In Google Sheets formulas I often see ranges specified with a large terminating number, such as B3:B299
= SUM(B3:B299)The upper-bound, or largest row number, is often chosen to be large enough to accommodate future data but may ultimately prove too small.
Does Sheets support some sort of syntax for indefinite intervals or indefinite row ranges?
For example, perhaps using a value like INF, so we might have:
= SUM(B3:BINF)Is there some sort of INF macro? Or is there an alias for the largest valid index of a row allocated for that particular spreadsheet?