Hi, I want a RGY to turn Red if we are "pass" our target date,
yellow if "at" the target date, and Green if "before" our target date,
=IF(ISBLANK([Target Date]1), "", IF([Target Date]1 > TODAY() + 1, "Green", IF([Target Date]1 >= TODAY(), "Yellow", IF([Target Date]1 < TODAY(), "Red", ""))))
this formula works, except even if we finish on time because I use TODAY() it will still turn red, I need a AND condition if "WO# Finish" is TRUE it stops updating.
I tried the code below and many different ways but can't get it to work, just wondering if someone can help me out,
=IF(AND(ISBLANK([Target Date]1, ""), [WO# Finish]1 = false), IF([Target Date]1 > TODAY() + 1, "Green", IF([Target Date]1 >= TODAY(), "Yellow", IF([Target Date]1 < TODAY(), "Red", "")))))
Thanks.