I Am using the below formular in my Health Indicator but even though my project is on track My overall project indicator is showing Red. What have I done wrong any assistance please :-)
=IF(AND([End Date]@row < TODAY(), [% Complete]@row < 1), "Red", IF(AND([Start Date]@row <= TODAY(), [End Date]@row >= TODAY(1), (TODAY(1) - [Start Date]@row ) / ([End Date]@row - [Start Date]@row ) > [% Complete]@row , [% Complete]@row < 1), "Yellow", IF(AND([Start Date]@row > TODAY(), [% Complete]@row = 0), "Blue", IF(NOT(ISBLANK([% Complete]@row )), IF([% Complete]@row = 0, "Blue", IF([% Complete]@row <= 0.25, "Red", IF([% Complete]@row <= 0.75, "Yellow", "Green"))), IF(Status@row = "Not Started", "Blue", IF(Status@row = "In Progress", "Yellow", IF(Status@row = "Completed", "Green", "Blue")))))))