So I have a template that I have adapted and it had a base formula for project health based on the difference in the planned date and the actual date. The issue is that it does not link to todays date so if you dont change the actual date it looks green even if it is days late. On the flip side if something is way late, but then changed to complete it still shows red.
Current Formula: =IF([Schedule Delta (%)]@row > 0.1, "Red", IF([Schedule Delta (%)]@row > 0, "Yellow", "Green"))
I wanted to add both todays date to the scheduled due date and the completion status of Canceled or Completed.
So I tried this formula with no luck: =IF((Status@row = "Canceled", "Green", IF(Status@row = "Complete", "Green", IF([End Date]@row - TODAY() < 0, "Red", IF([End Date]@row - TODAY() < =+5, "Yellow", "Green"), IF([Schedule Delta (%)]@row > 0.1, "Red", IF([Schedule Delta (%)]@row > 0, "Yellow", "Green"))))))))
Image for more context top two are new formulas the green are all the old formulas.
Any suggestions?