Hello Everyone,
I'm looking to join 2 tables lets say
| Full name | First | Middle | Last |
| John j Smith | John | j | Smith |
| Jane Doe | Jane | | Doe |
| Samuel Doe | Samuel | | Doe |
| Full Name | First | Last | Country | Email |
| John Smith | John | Smith | US | jsmith@aol.com |
| Sam Doe | Sam | Doe | US | sdoe@aol.com |
| Jane Doe | Jane | Doe | China | jdoe@aol.com |
I'm trying to join these 2 tables together then append the additional fields on the 2nd table to the first so it would look something like
| Full Name | First | Middle | Last | Country | Email |
| John j Smith | John | j | Smith | US | jsmith@aol.com |
| Jane Doe | Jane | | Doe | China | jdoe@aol.com |
| Samuel Doe | Samuel | | Doe | US | sdoe@aol.com |
I've tried the find & replace tool but it just seems to pick up on different people with the same last names, and the join tool doesn't pick up on a slightly different first name like Sam and Samuel, any advice is greatly appreciated.