In SSRS,
How do I list the parameter the user selected in the parameter drop down?
Place a label on the header of your report and create an expression for the value:
= "Days Selected " + Parameters!parm_Days_Past_Due.Label
What if multi-select is enabled for the parameter and the've chosen more than one value?
="Location Type= " + Join(Parameters!Location_Type.Label,",")
In this case, the join function treats the drop down label as an array object and concantonates all the values separated by a comma. You can also use other characters to separate the list, but a comma is the most easily understood.
No comments:
Post a Comment