I am trying to create a formula where the symbols (red, yellow and green circles) change when red when it is passed the Extension Deadline date, yellow when it is 60 days from the date, and green when it is more than 60 days from the date. What is a formula I can use to achieve this?
As of right now this is the formula I have: =IF([Extension Submittal Deadline]@row < 60, "Red", IF(AND([Extension Submittal Deadline]@row > 60, [Extension Submittal Deadline]@row = 60), "Yellow", [Extension Submittal Deadline]@row > 60, "Green"))
But it only shows red for all the other rows under 60 day notice.