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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

2 Multiple Value Parameters Not Passing Multiple Values to Subreport

Status
Not open for further replies.

Luvsql

Technical User
Apr 3, 2003
1,179
CA
I have a main report with 2 parameters, each of which allow multiple values. I started with NO parameters on the single subreport and allowed CR to create them for me (chose parameter, inserted to the right, new parameter created at bottom, then it picked the correct field to link).

When I run the report, only 1 value from each parameter is being passed to the subreport. The parameter on the subreport was created without the "multiple values" checked so I tried that as well, but still nothing.

I'm using CR 9 Advanced. Any thoughts?
 
How are you looking at the parms? Should use a formula like:
Code:
join({?parmsub1},', ')
otherwise you will only see the first parameter of a multi-value parameter. The formula joins all the parameters together with commas separating.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top