Display Parameter(Multi-value) in Report

suni picture suni · Nov 18, 2008 · Viewed 147.5k times · Source

Can anyone tell me how to display all the selected value of my multi value parameter in SSRS report. When giving parameter.value option it gives error.

Answer

Matt Hamilton picture Matt Hamilton · Nov 18, 2008

You can use the "Join" function to create a single string out of the array of labels, like this:

=Join(Parameters!Product.Label, ",")