Hi,
I want to change the Health column based on several conditions; If the due date is past due, red; if the due date is less than 5 days away and % complete is 0, if the due date is less than 5 days away and % complete is 50% or less then yellow, otherwise green. I cannot get the function to change health to green when the due date is more than 5 days away. Below is my formula. What am I doing wrong? Any advice would be great :)
=IF(Due@row < TODAY(), "Red", IF(AND(TODAY() - Due@row <= "5d", [% Complete]@row = 0), "Red", IF(AND(TODAY() - Due@row <= "5d", [% Complete]@row <= 0.5), "Yellow", IF(TODAY() - Due@row > "5d", "Green"))))
Thank you.