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
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!