Red Flag Trigger based on multiple conditions
Hello! I am attempting to adjust the red flag trigger in a RAID log so that it only displays if the due date is in the past and the status is "In Progress" or "Not Started."
The other option would be if the due date is in the past or the status is not "Complete.
My equation attempts continue to return as unparseable.
All help is appreciated!
Best Answer
-
This will set the flag to active if the due date is is the past and the status is either In Progress or Not Started.
=IF(AND([Due Date]@row < TODAY(), OR([Status]@row = "In Progress", [Status]@row = "Not Started")), 1, 0)
Answers
-
It looks like you only missed an equals sign.
=IF(AND([Due Date]@row < TODAY(), [Status]@row = "In Progress"), 1, 0)
-
Thank you! This worked! Do you know if it is possible to also have the flag display red when "In Progress" or "Not Started?"
-
This will set the flag to active if the due date is is the past and the status is either In Progress or Not Started.
=IF(AND([Due Date]@row < TODAY(), OR([Status]@row = "In Progress", [Status]@row = "Not Started")), 1, 0)
-
Thank you so much!
This worked perfectly!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.4K Get Help
- 447 Global Discussions
- 144 Industry Talk
- 479 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 151 Just for fun
- 72 Community Job Board
- 490 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!