开发者

SSRS 2005 -Set Visibility based on dataset rowcount

开发者 https://www.devze.com 2023-01-31 11:47 出处:网络
I have a line and a table in my report that I want to hide if my dataset has no rows in开发者_运维问答 it.

I have a line and a table in my report that I want to hide if my dataset has no rows in开发者_运维问答 it.

I tried using the expression =CountRows("MyDataSet") > 0 in the initial visibility but this always evaluates to false, even when there are rows in the dataset.

I suspect initial visibility is run before the data is loaded into the dataset.

How can I set the visibility of my table and other elements (a line), based on if the dataset has any rows or not?


This appears to work in 2008 - hopefully it will help ...

I created a DataSet with one record in it. I then created a text box and put your code in the 'Hidden' property in the Visibility Properties section.

I then changed it to

=CountRows("MyDataSet") < 1

Which will return TRUE when there are no rows, which will set the control to hidden.


Use =IIF(CountRows("DataSet1") > 0, false, true) inside the expression of visibility property of the control.


Worked totally

=IIF(CountRows("OpenItem_DS") < 1,"", "Wk No")
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号