ColumnA | ColumnB | ColumnC | ColumnD | ColumnSubD
A B ID1 TypeA TypeA.1
A B ID1 TypeA TypeA.2
R Z ID2 TypeA TypeA.1
R Z ID2 TypeB TypeB.1
I have a Stored Procedure that return 4 rows of records as above. After creating the dataset and configured the tablix properties to bind the SP, the table is showing 4 records exactly like above.
I'm trying to display the data like below, which is first group by ColumnC
then another subgroup on ColumnD
ColumnA | ColumnB | ColumnC | ColumnD | ColumnSubD
A B ID1 TypeA TypeA.1
TypeA.2
R Z ID2 TypeA TypeA.1
TypeB TypeB.1
The first step I tried was to create a rowgroup
grouping on ColumnC
, what happened was it automatically created a duplicated columnC
on the left.
May I know what is the proper way to achieve what I want and if can please just list down the steps. Many thanks.
With the caveat that I am assuming if ColumnA = A then ColumnB will always equal B, and ColumnC will always equal ID1
You'll end up with something like this: