I have a column called "Resource Totals" and I am trying to create conditions for the status column (Already made it a symbols column) for Red, Yellow, and Green
Green = 0.9-1.1
Yellow= 1.2-1.3
Red = >1.3
=IF([Resource Totals]@row = "0.9-1.1", "Green", IF([Resource Totals]@row = "1.2-1.3", "Yellow", IF([Resource Totals]@row > 1.3, "Red")))
No color is populating😟 for Green or Yellow but Red works just fine. Am I doing something wrong?
Supplemental Information:
My current values for my "Resource Totals" column are: 1.2, 1, 1.1, 1.3, 1.5 (only this one is red)