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
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!