是否有办法为参数列表中的每个实例运行子报表?我的子报表只设计一个参数,我只想在一个报表中多次返回子报表。
答案 0 :(得分:1)
You can "tablefy" your parameter list :
Create a query that will un-pivot
your param list as a TABLE(INT).
EX:
SELECT IDField FROM
dbo.TableValueFunctionToSplitCommaDelimitedListIntoTableOfInts(@MultiValueListParam)
Add a table or matrix your report.
This should print once per detail band. You can set the parameter to Fields!IDValue.Value