HIding a Table
-
Wednesday, January 23, 2013 9:04 AM
I have one DataSet DS_1 which returns a list of Userid.
I am pasing a userid from parameter(userid_1) to run the report.
My requrement is i want to hide a Table if my passing parameter(userid_1) is not in the list of Userids from DS_1.
How can i achive this??
All Replies
-
Wednesday, January 23, 2013 10:52 AM
hide the table if no rows returned:
=CountRow()=0 for hidden expression.
Regards,Ram.
Please don't forget to Marked as Answer if my post solved your problem and use Vote As Helpful if a post was useful. It will helpful to other users.
-
Wednesday, January 23, 2013 11:37 AM
Hi,
use below expression in table Visibility
=iif(Parameters!ReportParameter1.Value=Fields!id.Value,false,true)
then You can do this.
Mark this as answer if this post helps you.
- Edited by RamyaElango Wednesday, January 23, 2013 11:37 AM
- Edited by RamyaElango Wednesday, January 23, 2013 11:40 AM
- Marked As Answer by Sandeep-WT Wednesday, January 23, 2013 1:04 PM

