Sorry if this is a basic question, but I just started with SSRS and wasn't able to find something on google. Let's say I have a data that is returned in the form (Column1, Column2, Column3, Column4). I am trying to build a report that would group first on Column1 and then on Column2. For example if my query returns a result:
Column1 Column2 Column3 Column 4
Type A Item A Name 1 1
Type A Item A Name 2 2
Type A Item B Name 3 3
Type B Item A Name 4 4
I would like to see something like
Column1 Column2 Column3 Column 4
Type A Item A Name 1 1
Type A Item A Name 2 2
Type A Item B Name 3 3
Type B Item A Name 4 4
Type A
Item A
Name 1 1
Name 2 2
Total: 3
Item B
Name 3 3
Total: 3
Type B
Item B
Name 4 4
Total: 4