I'm attempting to build a formula to change the health color based on a drop down of 3 options.
My logic is this: If Flu level is less than 5%, turn flu risk level green. If Flu level is between 6% and 9%, turn flu risk level yellow. If Flu level is greater than 10%, turn flu risk level red
The formula I came up with is =IF([Flu level]@row < 0.05, "Green", IF(AND([Flu level]@row >= 0.06, [Flu level]@row <= 0.09), "Yellow", IF([Flu level]@row > 0.10, "Red", "")))
Unfortunately, the less than 5% option will not change to green. Am I missing something?
Appreciate any guidance you can provide.