Hello,
I'm working with two lists of names looking for potential matches, but aliases may be used.
What I'm hoping to do is run through the list on just last names, retain those match scores, then with the remaining matched names check if first names match.
I don't want to check list 1 against itself, and I only want to check first names against the list of names that have already. Even if there is a 0% match on first name, I still need any entry that matched the last name to carry through to the final result.
Thank you in advance.
Ex output format
| Full Name list 1 | Matched Name (from list 2) | List 1 LN | List 2 LN | Last Name Score | List 1 FN | List 2 FN | First name score |
| Adam Smith | Elizabeth smith | Smith | Smith | 100% | Adam | Elizabeth | 0% |
| Adam Smith | Adam Smith | Smith | Smith | 100% | Adam | Adam | 100% |
| Allan Breny | Adam Brown | Breny | Brown | X% | Allan | Adam | Y% |