I want to use the Harvey Balls to flag a status as follows:
70% or less = RED
greater that 70% and less than 100% = YELLOW
100% = Green
what I've written:
=IF([% Complete]@row < 0.7, "Red", IF(AND([% Complete]@row > 0.7, IF([% Complete]@row < 1, "Yellow", "Green"))))
I get INCORRECT ARUGMENT SET error on this. If i remove the AND and last IF:
=IF([% Complete]@row < 0.7, "Red", IF([% Complete]@row > 0.7, "Yellow"))
this will work but it doesnt address the between 70-99% (less than 100) condition
Having trouble incorporating that 'and' statement to get that middel "Yellow" condition.
thank you!