Looks like your parameter is called X, right? To display all selected (or entered in this case) values, you need to join them together. This is what the textbox expression looks like:
=Join(Parameters!X.Value, ", ")
On a multi-value parameter, the .Value property returns an array of selected items. With **Join()** they get concatenated while the second parameter represents the string separator to be used.
↧