I try to change the value color of my report.
Green if the value is greater than 85 Red if the value is less than 70 yellow if the value is greater than 70
I tried it with the Switch statement:
=SWITCH(Fields!System.Value < 70, "Red", Fields!System.Value > 70, "Yellow", Fields!System.Value >= 85, "Green")
But it shows not the changing of color but it shows me this here:
how can I change the color of the values?