Hi All,
I have SSRS report with multi value parameter. I need to display the parameter selection values in a text box. I've more than 50 records in the multi value parameter list. I've included the code to display "All" if I choose "select all" option otherwise it will show the selected values. But, I need to change the logic. I have to show only the 1st 5 records if I choose more than 5 records.
How can I implement this?
I have used the below code
=iif(
Parameters!Country.Count = Count(Fields!Country.Value, "Country")
,"All" ,iif(Parameters!Country.Count>5,"Display the 1st 5 values"
,Join(Parameters!Country.Value,",")
)
)
Regards,
Julie