Try a SWITCH expression instead of an IIF statement.
Here's a snippet:
=Switch(Fields!Cache_Hit_Ratio.Value >= 96.5, "Green", Fields!Cache_Hit_Ratio.Value >= 90, "Yellow", Fields!Cache_Hit_Ratio.Value < 90, "Red")
It helped me get around almost the exact same issue...
↧