Hi,
I am trying to use ActiveCell.FormulaR1C1 to select a particular cell.
My code is the following:
ActiveCell.FormulaR1C1 = "='MySheet'!R[9]C"
However, I don't always want it to select 9 rows down.
Earlier in the macro I have defined the following variables:
assumptions_end
assumptions_beg
I tried to use the following syntax but it did not work:
ActiveCell.FormulaR1C1 = "='MySheet'!R[assumptions_end - assumptions_beg]C"
What is the proper syntax for using a dynamic row? (The column does not need altering).
Bookmarks