简体   繁体   English

在SSRS中基于Matix隐藏标题文本框

[英]Hiding Header Text boxes based on Matix in SSRS

I want to Hide my Header Text boxes based on the matrix. 我想基于矩阵隐藏我的标题文本框。 How can I set the expression in visibility setting? 如何在可见性设置中设置表达式?

在此处输入图片说明

Goto the prepertied of the text box and then goto Visibility. 转到文本框的上方,然后转到“可见性”。 Select "Show or hide based on expression" and click on the [fx] button. 选择“基于表达式显示或隐藏”,然后单击[fx]按钮。

Assuming you wantt o show or hide depending if the Matrix is empty or not 假设您不想显示或隐藏,取决于矩阵是否为空

Then enter the below: =iif(CountRows("NameOfTheDataseOfTheMatrix") < 1,True, False) 然后输入以下内容:= iif(CountRows(“ NameOfTheDataseOfTheMatrix”)<1,True,False)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM