Merge Data from Multiple Rows Based on Email Address in Master Sheet

Answers
-
Hello,
I have kind of the same situation. I have the data in the master sheet and need to merge the info in one row based of the email address. Lets say that email address appears three times in three different rows, i need to merge the info in some of the columns like serial #'s into one column.
-
Hi @Tony Oxa
Suppose I have a Master Sheet like the image below.
First, I would dynamically populate unique emails to the Merged Master View sheet using the INDEX(DISTINCT()) formula.
[Email] =IFERROR(INDEX(DISTINCT({Raw Master Sheet : Email}), [#]@row), "")
Then, using the email, I can collect and join the data from the master sheet, Serial #, for example.
[Serial #'s Combined] =JOIN(COLLECT({Raw Master Sheet : Serial #}, {Raw Master Sheet : Email}, Email@row), ", ")
[First Submission] =MIN(COLLECT({Raw Master Sheet : Date Submitted}, {Raw Master Sheet : Email}, Email@row))
[Last Submission] =MAX(COLLECT({Raw Master Sheet : Date Submitted}, {Raw Master Sheet : Email}, Email@row))The last two formulas use the MIN and MAX functions to get the First and Last submission.
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 207 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives