For displaying all the selected values of multi value parameter in SSRS report
If you want to display all selected values for multi value parameters in SSRS report then you have to use this function:
=Join(Parameters!ParameterName.Label, ",") "This will display all selected values for a parameter but comma seperated"
=Join(Parameters!ParameterName.Label, VBCRLF) "This will display all selected values for a parameter but every value on a new line"
=Join(Parameters!ParameterName.Label, ",") "This will display all selected values for a parameter but comma seperated"
=Join(Parameters!ParameterName.Label, VBCRLF) "This will display all selected values for a parameter but every value on a new line"
Now its up to you which function you use.
Comments
Post a Comment