SSRS Title Visibility
I have a sub report called with the help of a parameter. Now i want to hide the title of the report based on some condition. I have tried the visibility property in title Properties. i have tried using both switch and iff, but of no use. please
help me on this.
i have used the following Expression
Switch (Fields!ID.Value ='1', False, Fields!ID.Value = '2', False, True)
thanks in advancebalaji
May 6th, 2011 12:58am
Hi Balaji,
The format to hide a textbox is to place the expression in the visbility tab as below
=IIF(<Condition>, True, False)
In your case it should be like below:
= IIf(Fields!ID.Value = "XXX", True, False)
Hope its helpful....
Thanks
KumarKG, MCTS
Free Windows Admin Tool Kit Click here and download it now
May 6th, 2011 9:36am
Hi Balaji,
The format to hide a textbox is to place the expression in the visbility tab as below
=IIF(<Condition>, True, False)
In your case it should be like below:
= IIf(Fields!ID.Value = "XXX", True, False)
Hope its helpful....
Thanks
KumarKG, MCTS
May 6th, 2011 4:35pm
hi kumar,
Thanks a lot......!
Regards
Balaji
balaji
Free Windows Admin Tool Kit Click here and download it now
June 14th, 2011 3:31am