Not sure what i'm doing wrong here. I want the RYG column to show green if the status is "completed" OR if the % complete is 1. Please assist.
=IF(OR(Status@row = "Completed", [% Complete]@row = 1), "Green", IF([End Date]@row - [Baseline Estimated Finish]@row > 2, "Red", IF([End Date]@row - [Baseline Estimated Finish]@row > -2, "Yellow", "Green"))))