Rollup of contacts into a single cell as a single select or comma sep string?
I have a project plan with 100 tasks.
Each task can have one or more assignees in the Assigned To column.
I want to have a rollup of all possible assignees into a single cell for project filtering (as opposed to task filtering).
I understand i can not do a formula with multiple contacts. I am OK to translate this into a multi-select cell or a text cell with comma separated values for this rollup cell itself.
The problem with my Distinct(Collect formula is that its treating each cell as the unique string as opposed to treating the individual names in each cell as the unique strings. Is there a formula that can analyze the collected strings and remove duplicates? This way if "NAME-A" appears in 6 different tasks with other combinations of names, the end rollup would still only see that as a single "NAME-A".
=JOIN(DISTINCT(COLLECT([Assigned To]43:[Assigned To]150, [P/C]43:[P/C]150, ="CHILD")), " , ")
Best Answer
-
Try writing the formula into a Multi-Select column as well! This column type should be able to identify the individual selections as unique, even when they're associated with another cell.
You would need to have the values separated by CHAR(10) instead of a comma in this case.
Try:
=JOIN(DISTINCT(COLLECT([Assigned To]43:[Assigned To]150, [P/C]43:[P/C]150, ="CHILD")), CHAR(10))
Let me know if this works for you.
Cheers,
Genevieve
Join us for Jumpstart 2025 with Community on 23 January (in two time zones)! 🎉 Register here.
Answers
-
Try writing the formula into a Multi-Select column as well! This column type should be able to identify the individual selections as unique, even when they're associated with another cell.
You would need to have the values separated by CHAR(10) instead of a comma in this case.
Try:
=JOIN(DISTINCT(COLLECT([Assigned To]43:[Assigned To]150, [P/C]43:[P/C]150, ="CHILD")), CHAR(10))
Let me know if this works for you.
Cheers,
Genevieve
Join us for Jumpstart 2025 with Community on 23 January (in two time zones)! 🎉 Register here.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.3K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!