Formula to flag overdue tasks

I've got a formula that flags overdue tasks, but it flags every task with no date. Is there a way to omit nulls?
=IF(Status@row <> "Complete", IF(Finish@row > TODAY(), 0, 1))
Best Answers
-
add an if statement at the beginning of your formula that looks at the date column.
=if(date@row <>””,IF(Status@row <> "Complete", IF(Finish@row > TODAY(), 0, 1)))
If you found this comment helpful. Please respond with any of the buttons below. Awesome🖤, Insightful💡, Upvote⬆️, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.
-
Thank you!
Answers
-
add an if statement at the beginning of your formula that looks at the date column.
=if(date@row <>””,IF(Status@row <> "Complete", IF(Finish@row > TODAY(), 0, 1)))
If you found this comment helpful. Please respond with any of the buttons below. Awesome🖤, Insightful💡, Upvote⬆️, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.
-
Thank you!
-
your very welcome
If you found this comment helpful. Please respond with any of the buttons below. Awesome🖤, Insightful💡, Upvote⬆️, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.
Help Article Resources
Categories
Check out the Formula Handbook template!