I´m stuck on a color expression using a switch command.
I want to be able to set the color green if the following is true.
=Switch( Fields!direction.Value = "North" and (Fields!transport.Value = "Car" and Fields!units.Value >= 1) and (Fields!transport.Value = "Bike" and Fields!units.Value >= 2), "Green",
1=1, "Red"
)
Is it possible to use that many "and" in a switch statement? Is there a better way to write this code, maybe to include a iif statement?