If/then formula to return a personalised value when multiple choices are selected ?
Our team has a sheet for our projects in which we have a multi-select column where we can select our contact name when we are assigned a project (column name is "Assigned to").
We have a very simple helper column that simply copies the information with the formula ="Assigned to"@row, so that we can view our projects in Card view by each team member (otherwise, it seems Card view does not support viewing by Contacts).
That being said, we have some projects that are assigned to multiple team members. To avoid cluttering the Card view columns with many columns that would include various combinations of our names, I'd like to create a formula for my helper column where, if multiple contact names are selected, then it would return a value of "Multiple collaborators", but if just one contact name is selected, it would return the value of that contact name.
Is this possible ?
Best Answer
-
You would use the COUNTM function.
=IF(COUNTM([Assigned To]@row) = 1, [Assigned To]@row, "Multiple Collaborators")
Answers
-
You would use the COUNTM function.
=IF(COUNTM([Assigned To]@row) = 1, [Assigned To]@row, "Multiple Collaborators")
-
That worked perfectly... thank you so much !
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!