Hey what's up, I have two input files that I want to compare based on "like/similar" names. here is an example;
Input 1:
| Name | Color | Number |
| Ford Bronco | Blue | 234 |
| Chevy Belair | Yellow | 456 |
Input 2:
| Name | Color | Number |
| Ford B | | |
| C.Belair | | |
I would want to match on similar names in the first column, and have the other fields filled in according to the similar matches found. Additionally, if a match is not found I would want that shown or the list of non matches output somewhere. So my output would look like this:
Output:
| Name | Color | Number |
| Ford B | Blue | 234 |
| C.Belair | Yellow | 456 |
Let me know if this makes sense, thank you. I have tried the fuzzy match and have had a hard time getting it to work.