Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 Reporting Services Development
 Hide group in SSRS

Author  Topic 

rexyrexin
Starting Member

19 Posts

Posted - 2010-12-20 : 09:10:13
I have groups and subgroups like A->B->C. If subgroup B does not comes with a value then subgroup B should be hidden and A->C should be shown.

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2011-01-09 : 01:38:25
you can set an expression for visibility property of group columns based on your condition. use expression like

=IIF(your condition,False,True)

for hidden property

------------------------------------------------------------------------------------------------------
SQL Server MVP
http://visakhm.blogspot.com/

Go to Top of Page
   

- Advertisement -