I am currently working on an IF statement for RYG. I currently have a statement that turns green if the task is not on the due date and in the future. I have it turn yellow on the due date and red when past due. I am trying to get the IF to work adding grey to the mix that if the column done (checklist) is marked that it will turn grey regardless of the due date. Here is what i have so far.
=IF(AND([Due Date]6 < TODAY(), Done6 = 0), "Red", IF([Due Date]6 = TODAY(), "Yellow", IF([Due Date]6 > TODAY(), "Green", IF(AND([Due Date]6 <= TODAY() >= Done6 = 1), "Gray"))))
Thanks,
Dan