Hi All, we have developed a fairly basic formula to determine the health of tasks:
=IF(Status@row = "Complete", "Green", IF(Status@row = "Canceled", "Green", IF(Status@row = "In Progress", "Yellow", IF(AND(Status@row = "Not Started", [End Date]@row <= TODAY()), "Red", IF(AND(Status@row = "On Hold", [End Date]@row <= TODAY()), "Red")))))
I would really appreciate assistance with making it smarter based on these scenarios:
- If Status@row = “In Progress” and [End Date]@row < TODAY (end date in the past), show red
- If Status@row = “Not Started” and [End Date]@row < TODAY (end date in the past), show red
- If Status@row = “Not Started” and [Start Date]@row < TODAY (start date in the past), show yellow
- If Status@row = “In Progress” and [Start Date]@row >= TODAY (start date is today or in the future), show green (currently showing yellow)
Thank you.