Count dropdown selections in one cell
I'm looking to see how I can add another FIND item to the below formula. Range 6 is a dropdown list and I'm looking to count all entries that have Global AND Mexico in the cell.
The below entry works for just finding anything with Global but I need it to also add anything that also contains Mexico in the same cell:
=COUNTIFS({Go-Live Incident Tracker Range 7}, "1", {Go-Live Incident Tracker Range 6}, FIND("Global", @cell) > 0)
Thanks
Angela
Answers
-
Have you tried just making those conditions what the COUNTIFS looks for?
=COUNTIFS({Go-Live Incident Tracker Range 7}, "Global", {Go-Live Incident Tracker Range 7}, "Mexico")Let me know if this works!
-
Will,
Unfortunately, this doesn't work, I think its to do with it being a dropdown column/cell. Its giving me a zero return, not an error message but thats not the correct answer.
Thanks
-
Angela, no worries. Let's try using Contains Statements:
=IF(AND(CONTAINS("Global", WBS@row), CONTAINS("Mexico", WBS@row)), "1", "0")
-
Will,
Unfortunately this does not seem to work. Its saying its #unparseable:
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.8K Get Help
- 406 Global Discussions
- 218 Industry Talk
- 457 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 297 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!