I want to write a Macro to iterate my cells on the SpreadSheet and set background colors for the cells based on some criteria. My understanding is I have to first manually/hardwire/specify the interested range of cells.
oRange = enSheet.getCellRangeByName(“A2:C6”)
Does the sheet have properties that could be useful vs randomly specifying a large range to grab a large address-space and then iterating to look for text and heuristically determining my row/columns/address-space.
I tried Print oRange.StartColumn, oRange.EndColumn but that didn’t work and Xray oRange did not display anything relevant… except ColumnLabelRanges