I have two datasets and need to merge one column from one dataset to the other dataset. The issue I have is the amounts sometimes can be slightly different. Is there any way to join or look up by slightly different amounts? If not, does fuzzy match allow you to match two records from different datasets and merge columns from one to another?
| Date | Product | Amount |
| 07/31/2024 | Apples | 50 |
| Product | Amount | Region |
| Apples | 51.25 | Southwest |
I want to bring the region from the second dataset into the first dataset. If I create a unique key (Product +Amount), is there anyway to achieve this with slightly different values?
Thanks, all.