I have a list of names and emails associated to an account.
I want to tie the names to the emails on the same account.
Here is my data
Account | Name 1 | Name 2 | Email 1 | Email 2 |
1 | Bob Johnson | Joel Baker | Bjohnson@1.com | joelbaker@1.com |
2 | Hannah Hope | Lindsay Keys | keys@2.com | HannahH@2.com |
Here is my desired output
Account | Name | ||
1 | Bob Johnson | Bjohnson@1.com | |
1 | Joel Baker |
| |
2 | Hannah Hope | HannahH@2.com | |
2 | Lindsay Keys | keys@2.com |
I'm guessing this is a fuzzy match question, but I am not sure how to set it up or if more prep work is required.
Any help would be appreciated
Thanks
Solved! Go to Solution.
Hey @ac5a,
Here's an example of how you could go about this. I've used your sample data.
In this case only one of the email and name pairs generates a match, but you can play around with the fuzzy match options or create additional versions of each name or email to increase this.
Fuzzy matching is more of an art than a science and relies a lot on you coming up with sensible business rules and then structuring your data accordingly. For example, depending on your data, you might want to treat a surname within an email address as a potential match -- in which case you'll need to create additional versions of your records.
The complexity of your workflow can increase dramatically once you start to take into account all the possible variants you want to use for matching (it's common to have more than one fuzzy match tool and then combine the results), but the basic approach is almost always as shown above.
Hope this helps. Workflow attached.
Thanks! I will give it a try!