Hello,
Am stumped with how to utilize my AND/OR's plus with a Match lookup to return True if all conditions are met, else false. Here is what I have started so far -- open to suggestions.
=IF(N2<>"COMM","TRUE",IF(OR(O2="DIP",O2="BAD",L2=550904),"TRUE",IF(ISERROR(MATCH(L2,Sheet1!$B$2:$B$36,0)),"FALSE","TRUE")))
The following conditions:
1. IF N2 = "COMM"
2. Exclude "COMM" UNLESS fits ONE criteria below:
Thank you!
Am stumped with how to utilize my AND/OR's plus with a Match lookup to return True if all conditions are met, else false. Here is what I have started so far -- open to suggestions.
=IF(N2<>"COMM","TRUE",IF(OR(O2="DIP",O2="BAD",L2=550904),"TRUE",IF(ISERROR(MATCH(L2,Sheet1!$B$2:$B$36,0)),"FALSE","TRUE")))
The following conditions:
1. IF N2 = "COMM"
2. Exclude "COMM" UNLESS fits ONE criteria below:
- L2=550904
- O2=DIP or BAD
- Is located in List (using Match formula)
Thank you!