How to Set Offset Ranges Dynamically?
Posted by Joe on July 04, 2001 8:55 PM
I need to sum several sections of columns in a spreadssheet.
The number of rows to sum varies from spreadsheet to spreadsheet.
The formula I've tried to use is this:
ActiveCell.FormulaR1C1 = "=SUM(R[Start]C:R[End]C)"
where Start and End are the offsets to the row numbers
to be summed. I get error # 1004.
This formula works just fine, but uses literals for the offsets:
ActiveCell.FormulaR1C1 = "=SUM(R[-10]C:R[-1]C)"
How can I use the variables in the offset formula?
Thanks