I have two lists of personnel names, a master list in A2:A2651 and a growing list in B2:B?. I need to find names in the growing B list that are also in the master A list. Using "Help" I made an array formula for exact matches that works: {=IF(OR(EXACT(B2, $A$2:$A$2651)),"EXACT MATCH","")}
Now, I've realized, on some occasions, on either list, the middle initial is included. Of course, these matches are overlooked by the exact match formula. So, I am making a partial match formula, but it won't quite work, yet. Here's what I'm trying.
=IF(ISNUMBER(SEARCH(B2,$A$2:$A$2651)),"PARTIAL MATCH","")
Any solutions would be much appreciated.