简体   繁体   中英

Hide the row in ssrs based on group

现在的情况

期望

面对问题

Hi , I am developing a ssrs report. And I have using two level of groups outer and inner group .

=IIF(RowNumber("GroupbyCategory") > 1, True, False)

I am trying with above code in row visibility, its working fine for single row. If the group contains more than one row, then its hide the first row. is there any possible to achieve as per expectation image. Thanks

To achieve as per the expected image. You need to add the condition that hide the first row only if the row count of the inner group is 1.

=IIF(RowNumber("GroupbyCategory") = 1 AND CountRows("GroupbyCategory") = 1, False, True)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM