I want to show the text "All" in textbox IIF Parameter CUSNO is selected null in SSRS. Else textbox has the Parameter!CUSNO.Value in it.Here's what I've already tried:
=IIF(IsNothing(Parameters!CUSNO.Value), "All", Parameters!CUSNO.Value)
I want to show the text "All" in textbox IIF Parameter CUSNO is selected null in SSRS. Else textbox has the Parameter!CUSNO.Value in it.Here's what I've already tried:
=IIF(IsNothing(Parameters!CUSNO.Value), "All", Parameters!CUSNO.Value)