I chose OleDb as a method of reading data from Excel, one of my problems on parsing the Excel is this:
I want to skip a few rows from the file (let's call them a header..) - there are merged cells there and other stuff I need to ignore, I found this syntax:
'SELECT * FROM [Sheet1$a4:c]',
specifying "a4" - the left corner of the header row, and "c" - the right most column where the data is ..how ever this is not OK to me as I do not know the exact number of columns with data I need to parse ...Is there another way of accomplishing this ?
'SELECT * FROM [Sheet1$A4:end]'