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
- 65.5K Get Help
- 448 Global Discussions
- 145 Industry Talk
- 481 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 152 Just for fun
- 73 Community Job Board
- 492 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 304 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!