COUNTIFS with OR in Ranges
I'm trying to count the records in another sheet.
Where:
Range 2 = Emily
AND
Range 3 = either "Awaiting Feedback" OR "On Hold"
This throws #UNPARSEABLE
=COUNTIFS({Range 2}, ="Emily",OR({ Range 3}, ="Awaiting Feedback",{Range 3}, ="On Hold", ))
Best Answer
-
You have too many commas in your OR function. Also, you need to define the range, then do the OR on the conditional part of the function. This should fix it:
=COUNTIFS({Range 2}, "Emily", { Range 3}, OR(@cell ="Awaiting Feedback", @cell ="On Hold"))
Answers
-
You have too many commas in your OR function. Also, you need to define the range, then do the OR on the conditional part of the function. This should fix it:
=COUNTIFS({Range 2}, "Emily", { Range 3}, OR(@cell ="Awaiting Feedback", @cell ="On Hold"))
-
Thanks David.. That did it!
I appreciate the help
-
No problem, glad it's working
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
- 85 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!