Task@Risk
Hi.
I'm trying to create the following formula for a RAID Log Task@Risk, to display a Red Flag if criteria is met:
If [End Date] is blank, then "Update Date", If the STATUS chosen from the STATUS drop-down is "Not Started" or "In Progress" or "Cancelled" or "On Hold" or "Delayed" & [End Date] has passed Today's date, then "Red Flag"
I've tried this formula, but have not succeeded
=IF(ISBLANK([End Date]@row], "Update Date", IF(AND([Status@row] = “Not Started”, IF[Status@row] = “In Progress”, IF[Status@row] = “Cancelled”, IF[Status@row] = “On Hold”, IF[Status@row] = “Delayed”, IF[End Date]@row >= TODAY()),"Complete",”Red”)))
Best Answer
-
Thank you Paul
Answers
-
Is "Complete" the only status that wouldn't throw a flag if the end date is in the past?
-
Hi Paul
Thank you for the reply, unfortunately I only saw it today.
Is "Complete" the only status that wouldn't throw a flag if the end date is in the past? - YES
-
This should be a little more manageable:
=IF([End Date]@row = "", "Update Date", IF(AND([Status@row] <> "Complete", [End Date]@row <= TODAY()), 1))
-
Hi Paul.
I've tried this but it still isn't working. Please find screenshot below:
Best regards
Mark
-
My apologies. When copy/pasting I forgot to remove a set of square brackets. Try this:
=IF([End Date]@row = "", "Update Date", IF(AND(Status@row <> "Complete", [End Date]@row <= TODAY()), 1))
-
Thank you Paul
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!