Hi all,
I'm quite new and I'm struggling with a formula I need to apply. I need to have an automated "at risk" status (red, yellow, green) in my projects masterlist.
Red: % Done is equal to 0% and the Start Date has passed
Yellow: % Done is bigger than 1%
Green: % Done is 100%
the formula I'm coming is this: =IF([% Done]1 > 1%, "Yellow", IF(AND([% Done]1 = 0%, [Start Date]1 < TODAY(), "Red", IF([% Done]1 = 100%, "Green"))
but I cannot make it work...any ideas??