But the excel documents I am working with are not the set of records like we have in database.
I am working with excel files which are soft copies of various physical documents like invoice, quotations etc. Programitically I would say various informations are scattered all around.
However Cell Number where a specific information is found is always fixed. This is the reason i wish to access is by cell numbers rather than by database approach.
Then I suggest, the recordset is to be populated by two indexes to draw row as well as coulums.
That is, suppose your recordset is in the second record, then the raw corresponds to the cursor location second among the records.
Then you have to access columns right with the recordsetname.Fields(index)-which is your columns in excel in that row
recordsetname.MoveNext increases the row count to one
and again your column index has to reinitialise else it will be out of your excel columns.
Now, you got it I hope.
Get back to the thread
regards
AV Manoharan