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
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 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!