Hi, I'm currently using this formula for status health but it's not the best because "Not Started" status is not showing Red if the End Date for the task is in the past. Obviously, the task is overdue even if it hasn't started. Can anyone assist to make this formula better?
=IF(Status@row = "Complete", "Blue", IF(Status@row = "Canceled", "", IF(Status@row = "Not Started", "", IF(ISBLANK([End Date]@row), "Blue", IF([End Date]@row >= TODAY(), "Green", IF([End Date]@row >= TODAY() - 3, "Yellow", "Red"))))))