Hello,
In Sheet1, Col A and Col B has list of emails based on user's role. Sheet2 has just a handful of emails, about 2000. I am trying to write a formula that tells me if either of the emails exists in the lists of emails from Sheet2. For example, if I just need to see if email from Cell A2 in Sheet1 exists in Sheet2, I have the following formula.
=IF(ISNUMBER(MATCH(A2,'Sheet2'!$A$2:$A$2001,0)),1,"")
Next, I do a check for the following:
=IF(ISNUMBER(MATCH(B2,'Sheet2'!$A$2:$A$2001,0)),1,"")
I am trying to combine these two formulas into ONE. How is it possible. I tried something like this and it is not working.
=IF(OR(MATCH(A2,'Sheet2'!$A$2:$A$2000,0),MATCH(B2,'Sheet2'!$A$2:$A$2000,0)),1,"")
Appreciate your help. Thanks in advance.
In Sheet1, Col A and Col B has list of emails based on user's role. Sheet2 has just a handful of emails, about 2000. I am trying to write a formula that tells me if either of the emails exists in the lists of emails from Sheet2. For example, if I just need to see if email from Cell A2 in Sheet1 exists in Sheet2, I have the following formula.
=IF(ISNUMBER(MATCH(A2,'Sheet2'!$A$2:$A$2001,0)),1,"")
Next, I do a check for the following:
=IF(ISNUMBER(MATCH(B2,'Sheet2'!$A$2:$A$2001,0)),1,"")
I am trying to combine these two formulas into ONE. How is it possible. I tried something like this and it is not working.
=IF(OR(MATCH(A2,'Sheet2'!$A$2:$A$2000,0),MATCH(B2,'Sheet2'!$A$2:$A$2000,0)),1,"")
Appreciate your help. Thanks in advance.