sheetCellRanges.getCells() doesn’t return all the cells skipping the cells with no content.
Is there a way to access all cells on sheetCellRanges, other than(pseudo code):
For range in ranges
For c in range.columns
For r in range.rows
access cell(c,r)
next r
next c
next range
Thanks,
Mike