I am using Join(Parameters!aCode.Value, ",") to concatenate selections from dropdownlist and display in a label control.
I would like to only display part of the selection because some are quite long, so multiple selections can create a very big label.
I tried: Join(left(Parameters!aCode.Value,3), ",") but got error:
"Overload resolution failed because no accessible join can be called with these arguments"