I am trying to create a formula that returns “Green” if Project Day Variance is less than or equal to 0, “Yellow” if Project Variance is between 1-10, or “Red” if Project Day Variance is great or equal to 11.
I tried to nest IFs, but I get Unparseable (see below):
=IF([Project Day Variance]@row <= 0, "Green"), IF(AND([Project Day Variance]@row >=1, [Project Day Variance]@row <=10)), "Yellow", IF([Project Day Variance]@row>11, "Red")
I can get it to work individually, but not combined.
@Paul Newcome thanks in advance