Absolute reference - insertion of the equivalent of '$' into the equation written in R1C1 notation
I have this equation that I use VBA to enter a cell in my spreadsheet:
ActiveCell.FormulaR1C1 = "=VLOOKUP(RC[-3],RC[-1]:R[" & CellNumber & "]C[-1],1,0)"
How do I enter a formula with signs $to preserve cell references?
I tried adding $to their respective positions in the formula, but that didn't work.
+3