I am attempting to automate the RYG column shown in the screen shot below. I need the formula to look at the finish date and status columns if the status is not "Done".
I need some feedback on the formula that I am using below.

=IF([Finish]1 < TODAY(), "Red", IF([Finish]1 = TODAY(), "Yellow", IF([Finish]1 > TODAY(), "Green", IF(AND[Status]1 = “Done”, “Green))))
