Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Display Multiple Parameters 1

Status
Not open for further replies.

skries

MIS
Jul 23, 2004
21
0
0
US
CR 8.5 SQL Database

How can I display the selection of multiple parameters that I have chosen on the report i.e. in the page or report header?

I have a crosss tab that tabulates work orders based on date created and type, but I use a parameter that allows you to select which shops you have selected for the criteria. I want to be able to show the report reader which shops the report represents in the header of the report.

Any ideas?

SLK
 
For a multi-value string parameter, you can create a formula like the following the display the selected values in a comma separated list:
[tt]
Join({?YourParameter}, ", ")
[/tt]
-dave
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top