I am writing code to generate excel file. I am generating a detailed report in 3 sheets on single XLS file. I am able to write 1 detailed sheet1. Now i want to fire sql query on sheet1 table to generate sheet2 table.
My sheet1 contains 9 columns. Out of 7, one is price.
I want to fire query like this
Select Product_Name, City, State, Country, SUM(price), Sub_Type, Description from Sheet1 Group By Product_Name, City, State, Country, Sub_Type, Description
And save both work sheet.
Please Help me Out for this. How can i Fire such query. Or any Other method to get result. Thanks & Regards