Looking for help with counting blank cells on uncompleted tasks
I am trying to create a formula to count number of lines that contain " Emergency" and the completed by column in blank
I have tried the below formula but have received #UNPARESABLE
=COUNTIFS(Priority12:Priority2232, "EMERGENCY 2 HOURS"), [Completed by]12:[Completed by]2232, " "))
Thanks
Answers
-
Hi @laurareid,
Your formula has a space in the 2nd criteria, so use one of the following if you want to capture all Priority cells containing "Emergency":
=COUNTIFS(Priority12:Priority2232, CONTAINS("EMERGENCY",@cell), [Completed by]12:[Completed by]2232, "")
=COUNTIFS(Priority12:Priority2232, CONTAINS("EMERGENCY",@cell), [Completed by]12:[Completed by]2232, ISBLANK(@cell))
If you want only the "EMERGENCY 2 HOURS", then just put this in place of the CONTAINS("EMERGENCY,@cell) part of the formula.
Hope this helps, but let us know if you have any problems/questions!
-
Thank you :)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 58 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!