I'm using a formula to calculate if the health color should be red, green or blue, but I also want to change it to red if the revised date is greater than the End Date, to show there is a slip in the schedule.
This is what I have that's not working:
=IF([% Comp]@row = 1, "Blue", IF([End Date]@row < TODAY(), "Red"), IF([Start Date]@row < TODAY()), IF ([Revised End Date]@row > [End Date],"RED" ), IF([% Comp]@row = 0, "Yellow", "Green"))))
Any assistance is appreciated. Thanks,