I have a sheet with data in cols A through H.
A
H
I need to determine the last row in column A that contains data (it\'s all conti
I've used getDataRegion
sheet.getRange(1, 1).getDataRegion(SpreadsheetApp.Dimension.ROWS).getLastRow()
Note that this relies on the data being contiguous (as per the OP's request).