我创建了一份SSRS报告,其中一个群组是经纪人。对于每个代理,SSRS创建一个带标题的单独页面。现在这是我的问题 - 在标题上我有一个表达式:
=IIF(Fields!rec_type.Value = "1","Processor", "Client")
但标题始终显示 "Processor"
,即使rec_type = '2'
也是如此。
要为每个页面创建标题,我有以下静态Tablix成员参数:
KeepWithGroup=After
RepeatOnNewPage=True
我需要更改其他任何属性吗?
谢谢, ZB
答案 0 :(得分:0)
如果报告的详细信息中有一列显示正确的值,请在标题中使用该列。您可以将其引用为
=First(ReportItems!textboxWithRec_typeShowing.Value)
答案 1 :(得分:0)
它不起作用。我添加了一个包含rec_type的列并尝试:
=iif(First(Fields!rec_type.Value, "DataSet1") = "1","Processor","Client")
=iif(First(Fields!rec_type.Value, "DataSet1") = 1,"Processor","Client")
=iif(Fields!rec_type.Value = 1, "Processor","Client")
=iif(Fields!rec_type.Value = "1", "Processor","Client")
每次报告标题仅显示“处理器”。
我的解决方案 - 我将标题更改为修复值“处理器/客户端”
ZB
enter code here