COUNTIFS IS BLANK OR other criteria
Sam Swain
✭✭✭✭
Hi all, I'm trying to make this formula COUNTIF the Due Date column is in the past and IF status column is blank OR it is "not received"
=IF(ISBLANK(Status@row), COUNTIF([Date Due]@row < TODAY(), 1), IF(Status@row = "Not Received", COUNTIF([Date Due]@row < TODAY(), 1)))
The above formula is returning 1, but the Due Date column is blank. I can't work out why?
Tags:
Best Answer
-
Try this instead:
=IF([Due Date]@row <> "", IF(AND(OR(Status@row = "", Status@row = "Not Received"), [Due Date]@row< TODAY()), 1))
Answers
-
Try this instead:
=IF([Due Date]@row <> "", IF(AND(OR(Status@row = "", Status@row = "Not Received"), [Due Date]@row< TODAY()), 1))
-
Amazing thanks Paul, that works perfectly
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.7K Get Help
- 405 Global Discussions
- 216 Industry Talk
- 456 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 297 Events
- 37 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!