How can count items in a multi-select column?
I have a project sheet with status and a multi-select column that lists the area(s) each project is for.
I have created a metrics sheet to calculate the number of projects per status per department, however, the columns that have more than one department listed is not being counted. What I am looking for is something like this:
Best Answer
-
I'm not sure of your sheet names or cross sheet reference names, but this is the general idea. This will give you "Student Services" projects that are in progress.
=COUNTIFS({Source Sheet | Area}, HAS(@cell, "Student Services"), {Source Sheet | Status}, "In Progress")
Answers
-
Hello @Stacy Bourret
Please try this:
=IF([Multi-Select Column]@row <> "", LEN([Multi-Select Column]@row) - LEN(SUBSTITUTE([Multi-Select Column]@row, CHAR(10), "")) + 1, 0)
Just replace the column name.
Hope this helps.
che
-
I'm not sure of your sheet names or cross sheet reference names, but this is the general idea. This will give you "Student Services" projects that are in progress.
=COUNTIFS({Source Sheet | Area}, HAS(@cell, "Student Services"), {Source Sheet | Status}, "In Progress")
-
Thank you Carson! That worked!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65K Get Help
- 443 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 129 Brandfolder
- 150 Just for fun
- 70 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!