Hi Experts,
I'm using Excel 2007 and I would like to return true/false when a row contains any partial match with another column data. for Ex:
----------------------
A | B
----------------------
Full Name | Names
----------------------
JohnSmith | John
JoeJohn | Nora
SusanJackson |
NoraAlbert |
SaraJohn |
----------------------
I want to check if any part from the name in A1 matches any name from B:B and return true/false in C
So the result should be something like this :
--------------------------------------------
A | B | C
--------------------------------------------
Full Name | Names | Match
--------------------------------------------
JohnSmith | John | Yes
JoeBlack | Nora | No
SusanJackson | | No
NoraAlbert | | Yes
SaraJohn | | Yes
--------------------------------------------
I was using this function but it's only working with full match not partial :
=IF(ISNUMBER(MATCH(A1,B:B,0)),"Yes","No")
Looking forward to your help.
Our community of experts have been thoroughly vetted for their expertise and industry experience.
The Most Valuable Expert award recognizes technology experts who passionately share their knowledge with the community, demonstrate the core values of this platform, and go the extra mile in all aspects of their contributions. This award is based off of nominations by EE users and experts. Multiple MVEs may be awarded each year.
The Distinguished Expert awards are presented to the top veteran and rookie experts to earn the most points in the top 50 topics.