Risk flag when past due date and task not started / no due date set
Hello!
I'm very new to formulas, I would love if someone could please point me in the right direction - I'm trying to get the flag to turn red when a planned finish date is in the past AND the status is either in progress or not started. But I don't want it to flag if it's not started and there isn't a planned finish date yet. Is that possible? The formula I'm trying is:
=IF(AND([Planned Finish Date]@row <= TODAY(), AND(Status@row = "Not Started", Status@row = "In Progress")), 1, 0)
But it's not quite right.
Thanks!
B
Answers
-
The AND formula is encompassing, you do not need to put and more than once, just have all your arguments within 1 set of parentheses separated by commas. Also because you are looking for 2 different criteria in your Status row you need an OR argument as a part of the AND statement.
=IF(AND([Planned Finish Date]@row <= TODAY(),OR(Status@row = "Not Started", Status@row = "In Progress")), 1, 0)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!