Link to home
Start Free TrialLog in
Avatar of SURESH0518
SURESH0518

asked on

SSRS Matrix column visibility

I have ssrs matrix report with Months 1 and 12. if there is no data in any one of months I would like to hide that column

Example:

Account Id                   Jan    Feb  Mar  Apr May Jun Jul Aug  Sep Oct Nov Dec
100                                1        2       3       4                          7     10   11            12

output will be

Account Id                   Jan    Feb  Mar  Apr  Aug  Sep Oct  Dec
100                                1        2       3       4       7     10   11     12
Avatar of Vikas Garg
Vikas Garg
Flag of India image

Hi,

You can set the collumn visibility property

=IIF(sum(Fields!Column.Value)>0,false,true)
Avatar of SURESH0518
SURESH0518

ASKER

But the above condition works in Tablix not in Matrix
ASKER CERTIFIED SOLUTION
Avatar of Vikas Garg
Vikas Garg
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial