How can I read say the first row of data, "row 1", cell by cell, until I hit an empty cell?
And once I hit that empty cell, how should I go about, programmatically, move onto the next row?
Can anyone provide the ExcelReport function calls that will allow me to read in one entire row (just 1 row, not a range of of rows) of data when I have no clue where the last (empty) cell in that row may be?
From reading the documentations and looking through the demos, my first thought was to keep a counter for row, then read in each cell across (incrementing the alphabetical column count) that row until I get a null cell. This way I can loop through the row counter from first to the last row (using an empty cell as my terminator).
What are the disadvantages of this technique? Are there more efficient ways of using ExcelReport to complete this task?
Any help would be greatly appreciated, thank you.