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.
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.