counting multiple select column
Hello,
I have a project plan that I'm trying to report on. I have a column for health check and a column for assigned team.
I want to see a total count of each status per team. That is the easy part and I figured that out by doing a
=COUNTIFS({HealthCheck}, "Red", {Team}, OR(@cell = "FI", @cell = "FIT"))
My issue is that it will only count if there is one team in the team column. If I have multiple teams such as FI, FIT the formula above won't count it.
How do I tell the formula to count if a value appears anywhere in a cell not exactly equal to that cell?
Best Answer
-
Your criteria should be the HAS function.
Something like the below:
=COUNTIFS({HealthCheck}, "Red", {Team}, OR(HAS(@cell, "FI"), HAS(@cell, "FIT")))
Answers
-
Your criteria should be the HAS function.
Something like the below:
=COUNTIFS({HealthCheck}, "Red", {Team}, OR(HAS(@cell, "FI"), HAS(@cell, "FIT")))
-
Thank you Leibel S....this is great!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!