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 | Email |
| 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