Menu Close

Display Multi-Select Parameter Values

If you want to display all of the selected Values in a multi-select parameter you have to use the JOIN function in ssrs.

=JOIN(Parameters!multiselectParameter.Value,",")

Or if you want to display all of the selected Labels in a multi-select parameter:

=JOIN(Parameters!multiselectParameter.Label,",")