Countif and HAS for multiselect for Quiz answers
I am using Countif and HAS to count a cell if a person has selected the correct quiz answers in a multiselect field.
=COUNTIF([Q2]@row, HAS("a", "b", "c", "e"))
This is returning 0 and I am not sure why?
Best Answers
-
Are you trying to count how many times the cell has those letters in it, or are you trying to count a single cell if it contains at least one of them? At best you will only receive 1 or 0 if you are counting a single cell.
-
In that case you would have to incorporate an OR statement.
=COUNTIFS([Q2]@row, OR(HAS(@cell, "A"), HAS(@cell, "B"), HAS(@cell, "C")))
Answers
-
Are you trying to count how many times the cell has those letters in it, or are you trying to count a single cell if it contains at least one of them? At best you will only receive 1 or 0 if you are counting a single cell.
-
I'm trying to count a single cell if it has all of them checked. I'm getting a 0 even when they are all checked. These letters are options in the multiselect field.
-
In that case you would have to incorporate an OR statement.
=COUNTIFS([Q2]@row, OR(HAS(@cell, "A"), HAS(@cell, "B"), HAS(@cell, "C")))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 494 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!