I have a colored ball column that states if something is overdue from the due date to make the ball red.
What I want is the ball to turn back green if the status changes to Completed. I tried this
=IF(ISBLANK(Due3), "Gray", Status3 = "Complete", "Green", (IF(Due3 < TODAY(), "Red", IF(Due3 = TODAY(), "Yellow", IF(Due3 > TODAY(), "Green")))))
what am I doing wrong? Everything is fine when I just use the due column but I can't quite firgure out the Status Complete changing it to green