Range("Y2").Select
ActiveCell.FormulaR1C1 = "=IF((AND(RC[-23]>RC[-9]+2,RC[-11]>0)),1,0)"
I want to change the entire row to orange if the value in this cell is "1" thru the macro I already have built. The code to determine if it's a one is above and I use an autofill to fill the entire report.
ActiveCell.FormulaR1C1 = "=IF((AND(RC[-23]>RC[-9]+2,RC[-11]>0)),1,0)"
I want to change the entire row to orange if the value in this cell is "1" thru the macro I already have built. The code to determine if it's a one is above and I use an autofill to fill the entire report.