Hiding SSRS Nested Groups while showing detail row

故事扮演 提交于 2019-12-10 23:23:31

问题


I have a hierarchical data set that looks like this:

Group1 Group2 Group3 Group4 Group5 Detail
Food   Fruit  Red    Apple         Apple
Food   Fruit  Orange Orange        Orange
Food   Meat   Red    Steak         Steak
Car    Honda  Red    2003   Civic  Civic
Car    Ford   Blue   2003   Escort Escort

My SSRS is a table with 5 groups and I have a parameter that filters "group1" column. It's structured like this:

Group1
Group2
Group3
Group4
Group5
Detail

When the report runs I want to be able to show all the groups that are not null. For Food that would be group 1-4, for Cars that would be group 1-5.

My problem is when I try to hide group5 using the Visibility expression I don't get the detail row when the group is hidden.

How do I continue to show the detail row and hide the groups that are blank?


回答1:


If you select a group in the group pane and select hidden=true, then no groups in the group hierarchy below that level will be rendered. You could filter the dataset leaving at least one group above details to allow details to render.



来源:https://stackoverflow.com/questions/17884481/hiding-ssrs-nested-groups-while-showing-detail-row

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!