如果没有数据,我可以使 SSRS 中的文本框消失、缩小或以其他方式 "roll up" 吗?
Can I make a text box in SSRS disappear, shrink, or otherwise "roll up" if there's no data?
我有几个包含计算数据的文本框。其中许多通常为空或零。除非有什么可展示的,否则如何通过让它们消失来节省 space?
右键单击文本框并单击Text Box Properties
。单击左侧列表中的 Visibility
,然后选择 Show or hide based on an expression
。然后点击 fx
按钮调出表达式编辑器。下面是一个示例表达式,如果其值为 NULL 或 0,将隐藏文本框。
=IsNothing(Sum(Fields!Test2.Value, "DataSet1")) OR Sum(Fields!Test2.Value, "DataSet1") = 0
我有几个包含计算数据的文本框。其中许多通常为空或零。除非有什么可展示的,否则如何通过让它们消失来节省 space?
右键单击文本框并单击Text Box Properties
。单击左侧列表中的 Visibility
,然后选择 Show or hide based on an expression
。然后点击 fx
按钮调出表达式编辑器。下面是一个示例表达式,如果其值为 NULL 或 0,将隐藏文本框。
=IsNothing(Sum(Fields!Test2.Value, "DataSet1")) OR Sum(Fields!Test2.Value, "DataSet1") = 0