choloboy
choloboy

Reputation: 815

Report link to other report (SSRS)

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 &parameterName=”+JOIN(Parameters!parameterName.Value,"&parameterName=") +”

and other variations of that expression with no luck. Any ideas?

Upvotes: 0

Views: 266

Answers (1)

TMNT2014
TMNT2014

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 &parameterName just

=Parameters!parameterName.Value

will do.

Upvotes: 1

Related Questions