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
Check out the Formula Handbook template!