Hi,
I have a plain simple report (SSRS 2008) having 3 row groups and a detail section. The report looks like below
Region Name |
Office Name |
Performer Name |
Policy# |
Coverage Code |
Line# |
Total Amount |
Count |
Southwest |
Arizona |
Jon Derby |
XXXXXX |
XXXX |
123 |
1000 |
1 |
XXXXXX |
XXXX |
456 |
500 |
1 |
|||
Kim Perth |
XXXXXX |
XXXX |
546 |
2000 |
1 |
||
XXXXXX |
XXXX |
846 |
200 |
1 |
|||
California |
Jonathan |
XXXXXX |
XXXX |
958 |
135 |
1 |
|
Kerry Mei |
XXXXXX |
XXXX |
754 |
600 |
1 |
Goup Structure –
- RegionName
- OfficeName
- PerformerName
- Policy#
- CoverageCode
- Line#
- TotalAmount
- Count
- PerformerName
- OfficeName
I have applied Display Toggle feature for groups RegionName, OfficeName and PerformerName. The requirement is to hide few columns(Policy#,CoverageCode,Line#) in the Details section(including the column headers), unless the user reaches the innermost group, in this case Performer Name. If the user expands any row under Performer Name group then columns which are Hidden should Show.
I have tried setting up the column visibility->show or hide based on a expression and passing =IIF(IsNothing(Fields!Performer_Name.LevelNumber.Equals(0)),True,False)
But this does not evaluate as expected. I am looking for conditional column visibility feature to suit the above requirement. Any help would be appreciated!!!