COUNTIFS IS BLANK OR other criteria
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
-
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!