Hi i have two table with the same column names, columns such as memberID, firstName, LastName, Zip, country, state
Table 1 has a list of information derived from clients signing up, list two is derived from another company. I need to count memberIDs that match in both lists. Because of those who sign themselves up, their firstName might be entered as Steve while the company list might be Steven. Another example might be Arthur J. compared to A. James
Because of the variations of first names and because last name might be hyphenated (because of marriage), hence our last name might be more updated thaen the company list. Now I do have zip/postal code which helps a lot.
Lately i've been matching based on first 3 letters of first name and first 3 of last name and first three of zip/postal code. I find cross matching with this critera results in less inaccurate matches. Any suggestion on how to do this better, or does anyone know of any cross matching software for sql or excel? Thanks
Table 1 has a list of information derived from clients signing up, list two is derived from another company. I need to count memberIDs that match in both lists. Because of those who sign themselves up, their firstName might be entered as Steve while the company list might be Steven. Another example might be Arthur J. compared to A. James
Because of the variations of first names and because last name might be hyphenated (because of marriage), hence our last name might be more updated thaen the company list. Now I do have zip/postal code which helps a lot.
Lately i've been matching based on first 3 letters of first name and first 3 of last name and first three of zip/postal code. I find cross matching with this critera results in less inaccurate matches. Any suggestion on how to do this better, or does anyone know of any cross matching software for sql or excel? Thanks