Reputation: 815
I have a report and I am trying to add a text box in which it will be a link to another report when clicked. The linked report has a multi-valued parameter which is a list of databases.
I am wondering what I need to put in the "Value" box from this picture..
I have tried
¶meterName=”+JOIN(Parameters!parameterName.Value,"¶meterName=") +”
and other variations of that expression with no luck. Any ideas?
Upvotes: 0
Views: 266
Reputation: 2130
Unfortunately I can't access your picture link, but if you are setting the value of a multivalued parameter in your subreport then you dont need the ¶meterName just
=Parameters!parameterName.Value
will do.
Upvotes: 1