SSRS中的iif与Rectangle

时间:2017-04-06 06:45:28

标签: reporting-services rectangles iif

我有2个矩形并依赖于计数值,其中一个应隐藏:

Rectangle Name =“Rectangle1” Rectangle Name =“Rectangle2”

=IIF(First(Fields!countValue.Value, "invoice") = "2"), Rectangle1, (Nothing))

1 个答案:

答案 0 :(得分:1)

iif()的工作方式如下:

iif(<Test Condition>, <Value if True>, <Value if false/not true>)

隐藏表达式基于TRUE = hidden工作。 所以你会使用类似的东西。

iif(First(Fields!countValue.Value, "invoice") = "2"), FALSE, TRUE)

在&#34;发票&#34;中的第一个值时,您想要显示的矩形上使用此选项。数据集是2。

有关在SSRS中隐藏项目的更多信息:https://docs.microsoft.com/en-us/sql/reporting-services/report-builder/hide-an-item-report-builder-and-ssrs