【发布时间】:2018-08-20 16:19:10
【问题描述】:
我正在报表生成器 3.0 中构建一个包含 3 个表的报表。
表 1:ABC
表 2:DEF
表 3:GHI
My report contains a drop down list of these 3 tables, I am using the IIF statement to hide the other 2 tables when 1 of them is selected.
比如我选择ABC,其他表DEF和GHI都被隐藏了。
语句是... =iif(Parameters!Deliverable.Value="ABC", False, True)
我的问题,我在下拉列表中还有另一项显示 "All",它应该显示所有 3 个表格。为了做到这一点,我将它添加到每个可见性表达式... =iif(Parameters!Deliverable.Value="ABC" OR Parameters!Deliverable.Value="All", False, True)。
这最终只给了我 tablix...而不是里面的数据。我应该怎么做才能修复它?
【问题讨论】:
标签: sql ssrs-2012 ssrs-tablix reportbuilder3.0