k3vsmith
Member
I have this formula that is copied to all rows in column G (cnEVMethod). Its working. But now I want to add to it.
If there is a P in column C (cnWBSEl)and 0 in column G (cnEVMethod), if those two conditions are also met I want n/a placed in that rows cell.
Where
cnWBSEl = "c1"
cnEVMethod = "g1"
Is this possible? I want the existing formula to do as it is. Just want to add in the case where EVMethod is showing 0 and WBSEl is showing P. Instead of that number being 0 I want it to read n/a
Thanks in advance.
If there is a P in column C (cnWBSEl)and 0 in column G (cnEVMethod), if those two conditions are also met I want n/a placed in that rows cell.
Code:
=IF(" & cnWBSEl & "=""W""," & _
Range(cnEVMethod).Offset(1, 0).Address(rowabsolute:=False, columnabsolute:=False) & _
",IF(ISBLANK(" & cnEVMethod & "),""""," & cnEVMethod & "))
Where
cnWBSEl = "c1"
cnEVMethod = "g1"
Is this possible? I want the existing formula to do as it is. Just want to add in the case where EVMethod is showing 0 and WBSEl is showing P. Instead of that number being 0 I want it to read n/a
Thanks in advance.