Forum Discussion
Fcin144
Apr 06, 2024Copper Contributor
Identify if multiple values exist in one cell
I am trying to determine if an email address is for a client, or it is not. So, for example our company email addresses are @nbc.com or abc.com I would like to know if any incoming email are ...
Fcin144
Apr 07, 2024Copper Contributor
Thanks for your reply. It is working however when I convert the @nbc.com and @abc.com email address conversion to my test case it's not working. I have supplied the actual test case in the screenshot below. I really appreciate everyone's help.
Lorenzo
Apr 07, 2024Silver Contributor
in B2:
=IF( SUM( IFERROR( SEARCH("@", TEXTSPLIT(A2, {"@bnymellon.com","@dreyfus.com"},,,1)), 0) ), "Yes", "No")