Forum Discussion
rogerdea
Helper IV
3 years agoReport Builder - Display selected parameters on report page
Hello Is it possible to show parameter selections on a report builder paginated report? e.g. I have a list of years and as users could be printing out the report, is would be important to know ...
Jon-Heide
Microsoft Employee
3 years agoYes. In the body of the report, add a text box.
In the textbox, set the expression to =Parameters![NameOfYourParameter].Value
That should show the selected value of the parameter within the body of the report.
jrunion2
3 years agoNew Member
Use this instead--- replace "DateTableYear" with your parameter name and it'll display your chosen parameters in a text box, separated by commas.
=Join(Parameters!DateTableYear.Label, ", ")