In SSRS, I want to display some exceptional records interspersed with grouped records. Exceptional records should be displayed at a higher group level.
All records are from the same DataSet, but exceptional records can be identified with a boolean flag in the data (IsExceptional = 1)
As example, imagine a grouping hierarchy that is three levels deep. Records are displayed at the lowest level, however users want to see some exceptional records at a higher level. Instead of showing exception records at Group 3, users want to see all the exception records shown at the Group 2 level. In this example, there are 10 records total, 2 of which are exceptional.
Group 1
Group 2
Exceptional Record 1 Data1 Data2 Data3
Exceptional Record 2 Data1 Data2 Data3
Group 3
Non-ex. Record 1 Data1 Data2 Data3
Non-ex. Record 2 Data1 Data2 Data3
Non-ex. Record 3 Data1 Data2 Data3
Non-ex. Record 4 Data1 Data2 Data3
Non-ex. Record 5 Data1 Data2 Data3
Non-ex. Record 6 Data1 Data2 Data3
Non-ex. Record 7 Data1 Data2 Data3
Non-ex. Record 8 Data1 Data2 Data3
Is there an SSRS mechanism for handling this type of design?