SQL Server Reporting Services (SSRS) – How to display all the values of a Parameter in a SSRS Report

In your expression method of the textbox, instead of:

=Parameters!someParameter.Value

Do this instead:

=Join(Parameters! someParameter .Value, ", ")

This will join all the values, separated by a comma.

Leave a Reply