Need formula to sum multiple selections from a dropdown column
Hello.
I have a formula in place to sum a multiple selections dropdown column to obtain a score on the next column.
However, the formula does not recognize the other selections.
Here is a screenshot of the three options. If they select the first two, then they should get a 5, not a 2.
This is the formula I'm using: =IF(CONTAINS("Designated Social time", [15 - ACL Engagement]@row), 2, 0) + IF(CONTAINS("Plus Board Members share Best Practices", [15 - ACL Engagement]@row), 3, 0) + IF(CONTAINS("Otherwise", [15 - ACL Engagement]@row), 0, 0)
What am I missing? 🤔
Answers
-
Hi @D. Rojas !
Try HAS instead of CONTAINS. It will allow you to look at multi-select options rather than just one text item. Like:
=IF(HAS([15 - ACL Engagement]@row, "Designated Social time"), 2, 0) + IF(HAS([15 - ACL Engagement]@row, "Plus Board Members share Best Practices"), 3, 0) + IF(HAS([15 - ACL Engagement]@row, "Otherwise"), 0, 0)
Ashley Knight
-
Thank you, Ashley! That's much better. 😃
-
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.9K Get Help
- 429 Global Discussions
- 147 Industry Talk
- 486 Announcements
- 5.2K Ideas & Feature Requests
- 86 Brandfolder
- 151 Just for fun
- 74 Community Job Board
- 498 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 305 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!