I have a formula to set the threat level based on my status and milestone date.
=IF(AND([Percent complete]@row <> 0.3, TODAY() > [Current milestone date]@row), "Red", IF(AND([Percent complete]@row < 0.3, TODAY() <= ([Current milestone date]@row + 30)), "Yellow", "Green"))
I want my status to be green when the course status percentage is met and if todays date is further out than 30 days of the milestone date.
Is it possible to adjust the formula to change the status?