So I'd like to display selected parameter values inside SSRS report header.
My parameter, let's call it STATUS, is defined as follows::
- Allow Multiple Values checked
- Data Type: TEXT
- Available values: pulled from the database through a stored procedure. Value field is ID and Label field is NAME.
I added a textbox inside report header and specified it's expression as follows:
=Join(Parameters!STATUS.Label,", ")
Everything works fine except for I see selected IDs and not NAMES listed. For example, I see: 1,2,5 instead of Active, Inactive, Pending... etc.
Available parameter options (inside the control from which parameter can be specified) are displayed correctly (NAMEs are displayed and not IDs)
Is this a SSRS bug?