I'm trying to create a formula that will automate the RYG balls (red, yellow, green) based on the project's % Complete.
Green = 100%
Yellow = 50-99%
Red is = 0-50%
Below is how I wrote the formula, but I'm getting a Unparseable errors.
**Note, I'm trying to enter the formula into the Status column on row #5, figuring I would autofill the formula down if I can get it to work. That Status column is already formatted for the RYG symbols.
=IF([% Complete]5 = 100%, "Green", IF([% Complete]5 > 50% AND <100) "Yellow", IF([% Complete]5 < 50%, "Red")))
Not sure if this matters, but the [% Complete] column defaults to % format. I saw some other threads that said t0 enter the percentage using 2 decimals. So I tried;
=IF([% Complete]5 = 1%, "Green", IF([% Complete]5 > .5% AND <1) "Yellow", IF([% Complete]5 < .5%, "Red")))
Same error. Then I tried removing the % signs...
=IF([% Complete]5 = 1, "Green", IF([% Complete]5 > .5 AND <1) "Yellow", IF([% Complete]5 < .5, "Red")))
Does anyone know why this isn't working?
Thanks in advance!