I'm trying to script a very basic set of keystrokes in excel where I'm setting a cell to reference a cell that is 2 to the right and then the next non-blank cell down. Very easy set of keystrokes:
= right right ctrl-down enter
But when I use the macro recorder to do this it wants to substitute the ctrl-down with a relative reference; ie
ActiveCell.FormulaR1C1 = "=R[6]C[3]"
Surely there is an easy substitution to do what I want?