I am not a programmer, but I am trying to learn something of VBA code in excel for purpose of my job, so I have a question, is it possible to shorten this recorded macro like offseting it or something?
Range("B2").Select
ActiveCell.FormulaR1C1 = _
"=IFERROR(R[25]C[8]:R[25]C[9],R[25]C[9])"
Range("C2").Select
ActiveCell.FormulaR1C1 = _
"=IFERROR(R[25]C[9]:R[25]C[10],R[25]C[10])"
Range("D2").Select
ActiveCell.FormulaR1C1 = _
"=IFERROR(R[25]C[10]:R[25]C[11],R[25]C[11])"
Range("E2").Select
ActiveCell.FormulaR1C1 = _
"=IFERROR(R[25]C[11]:R[25]C[12],R[25]C[12])"
Range("F2").Select
.
.
.
.etc