I have a status column that uses the Red, Yellow, Green, and Blue symbols. I would like it to automatically update based on the dates in the Due Date and Compete Date columns. The parameters are as follows:
If there is a Complete Date = Green
If there is no Complete Date, AND Due Date is over 7 days away = Blue
If there is no Complete Date, AND Due Date is less than 7 days away = Yellow
If there is no Complete Date, AND Due Date is past today = Red
This is the formula I've tried, but I can't get it to work.
=IF(NOT(ISBLANK([Complete Date]@row)), "Green", IF(AND([Due Date]@row > TODAY(-7), ISBLANK([Complete Date]@row)), "Blue", IF(AND([Due Date]@row < TODAY(-7), ISBLANK([Complete Date]@row)), "Yellow", IF(AND([Due Date]@row < TODAY(), ISBLANK([Complete Date]@row), “Red"))))
Any suggestions?