I have successfully automated the RYG balls to show a different color as we get closer to a due date, and then show "OVERDUE" when the due date has passed (Urgency). (Days1 is a hidden column that counts the difference between today's date and the due date) Here is the successful formula:
=IF(Days1 >= 7, "Green", IF(AND(Days1 > 3, Days1 < 7), "Yellow", IF(AND(Days1 > 0, Days1 < 4), "Red", "OVERDUE")))
However, I need it to display nothing ("") if a 2nd column named STATUS also shows "Completed". In reading other threads, I need an IF/OR command with a IF/AND. If I put the IF/OR beginning, I can't seem to get it to work. Here is what I CAN'T get to work:
=IF(OR(STATUS1 = “Completed”, ""), IF(AND(Days1 >= 7), "Green", IF(AND(Days1 > 3, Days1 < 7), "Yellow", IF(AND(Days1 > 0, Days1 < 4), "Red", "OVERDUE"))))
The thread I used as my guide made sense to me, and here was a the example I based it off:
=IF(OR($[% Complete]2 = 1,$[End Date]2 > TODAY()), "Green",
IF(AND($[% Complete]2 < 1,$[End Date]2 <= TODAY()), "Red", "Yellow"))
Forgive me if this is an easy fix and I am just too daft to figure it out. Thanks for the help.
