I am using ExcelDataReader to read data from my Excel workbook in C#.
But structure of my Excel sheet is such that data to be read can start from any particular cell and not necessarily A1.
Can any one Please suggest a way on how this can be achieved using ExcelDataReader?
One way to do it :
The
result.Tablescontains the sheets and theresult.tables[0].Rowscontains the cell rows.