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
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!