我正在SSRS 2013中开发一个报告,其中我试图将列/字段值从子报表传递到主报表,因为我必须使用列/字段的值来显示主报表的其他Tablix中的行。有人可以帮我弄这个吗。
答案 0 :(得分:0)
在操作>进行报告中转到文本框属性:
将参数传递到子报表:
'Name
Parameter1Sub 'This is the name used in the subreport
'Value
[@Para1]
'In the expression
=Parameters!Para1.Value
如果您想通过Tablix传递值:
'Name
FieldNameSub 'This is the name used in the subreport
'Value
[FieldName.UniqueName]
'In the expression
=Fields!FieldName.UniqueName