I have a multi-value parameter, for which each value I need to render a copy of a report.
I have a main report w/ a multi-value parameter. The main report has a list control, with a subreport inside. The main report calls a stored procedure that splits the comma delimited multi-value parameter, and returns it to the dataset.
I'm having 2 problems: 1) When it returns multiple copies of the subreport, it's always the report for the first item in the comma delimited list 2) Occasionally, when I attempt to have more than one value in the multi-value parameter, it throws an error saying "One or more parameters were not specified for the subreport, 'SubReport1', located at: ."
How can I get the subreport to show for each value in the multi-value parameter?