I have this formula:
=IF(R3="Yes","DO NOT COUNT",
IF(OR(D3="Unknown",J3={"Terminated","Active - Kiosk"}),"DO NOT COUNT",
IF(J3="ACTIVE",CONCATENATE(M3,O3),
"Check Record")))
Which works fine, but I need to add one more item that refers to a table to identify "do not count" records. I tried to incorporate the following statement:
IF(VLOOKUP(H2,Pocket!$A$2:$B$213,2,FALSE)="Pocket","DO NOT COUNT",
to look like this:
=IF(R2="Yes","DO NOT COUNT",
IF(OR(D2="Unknown",J2={"Terminated","Active - Kiosk"}),"DO NOT COUNT",
IF(VLOOKUP(H2,Pocket!$A$2:$B$213,2,FALSE)="Pocket","DO NOT COUNT",
IF(J2="ACTIVE",CONCATENATE(M2,O2),
"Check Record"))))
The problem with this is that it returns #N/A because if value is not found on table then it returns the error....i tried different combinations but I just don't seem to come up with the right answer..... can anyone help with some ideas.....PLEASE!!
=IF(R3="Yes","DO NOT COUNT",
IF(OR(D3="Unknown",J3={"Terminated","Active - Kiosk"}),"DO NOT COUNT",
IF(J3="ACTIVE",CONCATENATE(M3,O3),
"Check Record")))
Which works fine, but I need to add one more item that refers to a table to identify "do not count" records. I tried to incorporate the following statement:
IF(VLOOKUP(H2,Pocket!$A$2:$B$213,2,FALSE)="Pocket","DO NOT COUNT",
to look like this:
=IF(R2="Yes","DO NOT COUNT",
IF(OR(D2="Unknown",J2={"Terminated","Active - Kiosk"}),"DO NOT COUNT",
IF(VLOOKUP(H2,Pocket!$A$2:$B$213,2,FALSE)="Pocket","DO NOT COUNT",
IF(J2="ACTIVE",CONCATENATE(M2,O2),
"Check Record"))))
The problem with this is that it returns #N/A because if value is not found on table then it returns the error....i tried different combinations but I just don't seem to come up with the right answer..... can anyone help with some ideas.....PLEASE!!