COUNTIFS not working where one reference is a column with multiple drop downs...
=COUNTIFS({New RT - Priority}, [Column2]$28, {New RT - Platform}, "CASI")
This isn't working... I want a count for if the Priority is Critical (this is in [Column2]$28) and the Platform (from a drop down column) includes CASI. (There may be multiple entries in the drop down column). I know the answer is 1 but it's not returning that number...
HELP!!! Going mad here... 🤔
Best Answer
-
If you are using a multi-select dropdown, you will want to include a HAS function like so:
=COUNTIFS({New RT - Priority}, [Column2]$28, {New RT - Platform}, HAS(@cell, "CASI"))
Answers
-
If you are using a multi-select dropdown, you will want to include a HAS function like so:
=COUNTIFS({New RT - Priority}, [Column2]$28, {New RT - Platform}, HAS(@cell, "CASI"))
-
Awesome! Do I have to type each platform name or can I use a Column1@row code?
-
You can use cell references, but keep in mind that column names that have a special character, number, and/or space need to be wrapped in [square brackets].
=COUNTIFS({New RT - Priority}, [Column2]$28, {New RT - Platform}, HAS(@cell, [Column1]@row))
=COUNTIFS({New RT - Priority}, [Column2]$28, {New RT - Platform}, HAS(@cell, [Column Name]@row))
=COUNTIFS({New RT - Priority}, [Column2]$28, {New RT - Platform}, HAS(@cell, ColumnName@row))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.3K Get Help
- 364 Global Discussions
- 199 Industry Talk
- 428 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 444 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!