COUNTIFS function with multiple criteria

I have what I think should be a simple formula, but I only get "#UNPARSEABLE".
I just want to return a count when the WAVE column contains "Wave 2" AND the STATUS column contains "Not Started". My current formula is:
=COUNTIFS({Wave}, "Wave2" AND {Status}, "Not Started")
Best Answer
-
Try
=COUNTIFS({Wave}, "Wave2", {Status}, "Not Started")
The
COUNTIFS
function allows you to specify multiple pairs of ranges and criteria. Each pair represents one condition. The function counts only those cells where all specified conditions are met simultaneously.if you still get errors it could be how you have {Wave} and {Status} defined
=COUNTIFS([Wave]:[Wave], "Wave2", [Status]:[Status], "Not Started")
Answers
-
Try
=COUNTIFS({Wave}, "Wave2", {Status}, "Not Started")
The
COUNTIFS
function allows you to specify multiple pairs of ranges and criteria. Each pair represents one condition. The function counts only those cells where all specified conditions are met simultaneously.if you still get errors it could be how you have {Wave} and {Status} defined
=COUNTIFS([Wave]:[Wave], "Wave2", [Status]:[Status], "Not Started") -
Thank you - changing to the following fixed it
=COUNTIFS({Wave}, "Wave2", {Status}, "Not Started")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.9K Get Help
- 441 Global Discussions
- 153 Industry Talk
- 501 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 79 Community Job Board
- 511 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!