So I need to select certain columns starting with Column 11 all the way to 1000. I need to apply a formula along each selected column. The columns I need to select are in 4 steps. The code I used is
For colNum = 11 To 1000 Step 4
Range(Cells(2, colNum), Cells(225, colNum)).FormulaR1C1 = "=(D2)(G2)*RC[-2]"
Next colNum
The code garbs the correct value for RC[-2] but when it goes to the next row, the cells D2 and G2 in the formula don't change to D3 and G3 / to the corresponding cells in the next row. Any ideas?
Thanks in advance!