I have created a text box in SSRS, based on a single parameter selection (Parameters!choice.Value) i want to display some text.
For example the parameter has 3 possible selection A, B and C
So....
=IIF(Parameters!choice.Value = "A", "Apple", ""
or IIF(Parameters!choice.Value = "B", "Banana","Carrot"))
but when i view the report, i get and "ERROR" in the text box
What am I doing wrong