How to COUNT multi-select drop down list.
My sheet is for process improvement ideas. When one is finished, we have a column where we can check off which areas we improved (some are just Cost Savings, some have 3 or 4 options selected).
I'm trying to count how many times each improvement category is checked off on the entire sheet. Note: I have 5 categories, for each of these attempted formulas I tried all of them in the " " to make sure it wasnt a spelling mistake or an unused category.
First Attempt: =COUNTIF({Areas Improved}, CONTAINS("Customer Experience", @cell)) which returned 0s for all categories
Second attempt: =COUNTM({Areas Improved}, CONTAINS("Customer Experience", @cell)) which returns 2s for all categories
Best Answer
-
If I understand correctly:
You have a multi select dropdown where you specify which area where improved within each improvement idea.
If that is correct, your first formula should work, although it would be better practice to use the HAS function for this setup, see below:
=COUNTIF({Areas Improved}, HAS(@cell,"Customer Experience"))
Check your cross sheet reference {Areas Improved} to make sure it is setup correctly
Answers
-
If I understand correctly:
You have a multi select dropdown where you specify which area where improved within each improvement idea.
If that is correct, your first formula should work, although it would be better practice to use the HAS function for this setup, see below:
=COUNTIF({Areas Improved}, HAS(@cell,"Customer Experience"))
Check your cross sheet reference {Areas Improved} to make sure it is setup correctly
-
@Leibel S That is exactly what I needed, thank you!!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 472 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!