I have Multivalve Parameter with defined value As String in the Parameter, All I want to show in the report Header based on the value selected Needs to show the text based on the Switch condition
=switch(
Parameters!Input.Value = "0","Zero",
Parameters!Input.Value = "1", "One"
Parameters!Input.Value = "2", "Two"
Parameters!Input.Value = "3", "Three"
True, "OTHER"
)
=switch(
Parameters!Input.Value(0) = "0","Zero",
Parameters!Input.Value(1) = "1", "One"
Parameters!Input.Value(2) = "2", "Two"
Parameters!Input.Value(3) = "3", "Three"
True, "OTHER"
)
I have tried both ways, Order of the parameter values are same as in the switch condition. When run #Error, When Change Multi to single value parameter. It is working fine, But not for Multi parameter. Inputs will be appreciated. Thank you