I'm creating a reference contact list. My goal is to get each unique Email down to a single row.
My original plan was to GroupBy 'Email' and then Concatenate 'SourceFile' and this is where I have started running into problems - I was also doing GroupBy 'Campaign' and 'Phone', originally expecting those Groups to end up with only one row since there is only one data point for each of those, but in my inexperience, it was also keeping a blank row for each of those (thus preventing me to get down to a single row by email). Regarding 'Title', I think it would be best to concatenate them, and then also break each individual Title into a new column (so they can be filtered appropriately).
| Email | SourceFile | Title | Campaign | Phone |
| abc@gmail.com | Mailing List | Director | | |
| abc@gmail.com | SFDC | Manager | FY23 | |
| abc@gmail.com | Web | Director | | 555-555-5555 |
The end goal I am imagining is:
| Email | SourceFile (concat) | Title (concat) | Title1 | Title2 | Campaign | Phone |
| abc@gmail.com | <Mailing List> <SFDC> <Web> | <Director><Manager> | Director | Manager | FY23 | 555-555-5555 |
I am hoping someone with more experience can help this newbie out!
Thank you very much in advance!