C
cparsons
I have a working formula that looks like this:
Code
-------------------
.Offset(P, 5).Formula = "=IF(RC[-1]>100,IF(RC[1]=""Y"", if(rc[2]=""US"",""TRUE"")),""FALSE"")"
-------------------
and I want to change it to:
Code
-------------------
.Offset(P, 5).Formula = "=IF(.offset(P, 4) > 100, " & _
"IF(.offset(P, 6) =""Y"", " & _
"IF(.offset(P, 7) =""US"",""TRUE"")),""FALSE"")"
-------------------
but I keep getting an application error when the macro runs and it i
because of the formula.
Any suggestions?
Thanks
Code
-------------------
.Offset(P, 5).Formula = "=IF(RC[-1]>100,IF(RC[1]=""Y"", if(rc[2]=""US"",""TRUE"")),""FALSE"")"
-------------------
and I want to change it to:
Code
-------------------
.Offset(P, 5).Formula = "=IF(.offset(P, 4) > 100, " & _
"IF(.offset(P, 6) =""Y"", " & _
"IF(.offset(P, 7) =""US"",""TRUE"")),""FALSE"")"
-------------------
but I keep getting an application error when the macro runs and it i
because of the formula.
Any suggestions?
Thanks