When you record a macro with a formula VBA for some reason will use the FormulaR1C1 property and use RC notation.
I normally change it, but the code will still work but might be a little unclear. If you set the R1C1 values it's likely that the code was recorded. Lets do the following: Sub Macro13() ActiveCell.FormulaR1C1 = "=R[1]C+R[1]C[1]" Range("A3").Select End Sub |