Range("B6"
.Select
Selection.EntireColumn.Insert
ActiveCell.FormulaR1C1 = _
"=IF(ISBLANK(RC[2]),"" "",IF(ISBLANK(R[-1]C[2]),R[-1]C[1],IF(R[-1]C>0,R[-1]C,"" ""
))"
I realize that R stands for Row and C for Column but I thought that cell A1 = R1C1. I imagine that the negative numbers have the formula move back or up.
Can someone translate this formula using the letter/number cell references? I can see that it is inserting a column and comparing other cells but I am just not sure which.
Thanks,
Cord
Selection.EntireColumn.Insert
ActiveCell.FormulaR1C1 = _
"=IF(ISBLANK(RC[2]),"" "",IF(ISBLANK(R[-1]C[2]),R[-1]C[1],IF(R[-1]C>0,R[-1]C,"" ""
I realize that R stands for Row and C for Column but I thought that cell A1 = R1C1. I imagine that the negative numbers have the formula move back or up.
Can someone translate this formula using the letter/number cell references? I can see that it is inserting a column and comparing other cells but I am just not sure which.
Thanks,
Cord