I am trying to create a formula with the following:
If a task is less than 50% complete, turn the RYG light "Red"
If a task is between 50-99% complete, turn the RYG light "Yellow"
If a task is 100% complete, turn the RYG light "Green"
I entered:
=IF([% Complete]@row <= 0.5, "Red", IF([% Complete]@row >= 0.5, <= 100 "Yellow", IF([% Complete]@row = 100, "Green"))))
Only my Red lights are showing up.