Hi all,
I am trying to have the symbol color change based on the % Complete on a task. I have gotten it to work for 3 colors (Red/Yellow/Green) in another sheet, but now I am trying to do the same with 4 colors, including Blue. I am looking to have symbol turn Green when % Complete is at 100%, Yellow when % Complete is greater than Zero, Blue when % Complete is greater than 50%,, and Red when % Complete is Zero. I thought I had the formula correct, but when I changed a % Complete to 60%, the symbol still remains Yellow.
Here's the formula I have. Any help would be appreciated!
=IF([% Complete]@row = 1, "Blue", IF([% Complete]@row > 0, "Yellow", IF([% Complete]@row > 0.5, "Green", "Red")))