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
- Smartsheet Customer Resources
- 64.3K Get Help
- 422 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!