Good morning! We've got an event coming up where individuals could purchase multiple items where each item populated on its own row. So if someone ordered four different items, it shows on four different rows with the same email address for each row.
I'm trying to produce a printout that would combine all the different ordered items to a single cell matched by email address.
For example, the output is currently:
Column A Column B
abc123@gmail.com Item A
abc123@gmail.com Item B
abc123@gmail.com Item C
And I'd like an output that produces:
Column A Column B
abc123@gmail.com Item A, Item B, Item C
Bonus if I can also implement a 3rd column (quantity) into the final output.
Thanks in advance!
Bookmarks