Dumping data in excel from a particular cell
I need to create an excel worksheet and need to put data into that...
I used ADO and C++.
Creation of excel sheet if the file does not exists, dumping data onto it works fine for me.
But the problem is The requirement is like that I need to dump data from a particular cell
in the sheet.
How to do that.
I am clarifying that for your convenience.
suppose I have two columns of data, Quantity and Price namely.
A B
1 Qty price
2
3
4
5
6
In excel the first row by default contains the header information.Now instead of writing the
data from A2 onwards.I want it to be printed from A4.
Now my question is is there any way to do this?
If possible can you please put some code snippet in C++?

