I have 2 reports
The first report displays the number of guids that match a record in a database, i.e.
List 1 6
List 2 7
List 3 10
The second report is a breakdown of those guids. so when I click 6 on the first report, I want to see the list of guids that make up those 6.
I have no parameter in the first report, I have a parameter in the second report called guids, it is set to be a multivalue and the list box in the second report has a filter which is an "IN" and that equals
=split(join(Parameters!guid.Value,","),",")
If I enter 123,456,789 in the default values it works...
I have attached the subreport to the value cell that contains 6 in the main report to the subreport and said Subreport> guid to docguid in the second column.
It is only passing the first one!
does any body know why?