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
- 67.8K Get Help
- 474 Global Discussions
- 206 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!