Forum Discussion

gvg's avatar
gvg
Post Prodigy
8 years ago
Solved

Simple summarizing by Group, Subgroup

Hi all,

This seems to be a simple task, but I got stuck. I have a table myGroups, that lists groups, subgroups and products and mySales table:

 

myGroups                                                      mySales

Group   Subgroup  Product                           Product       Amount

-------   -----------  --------                            ---------      ---------

112       1120                1                                       2           16000

112       1128                2                                       4             4000

113       1130                3                                       2               332

113       1138                4                                       4                 57

 

I need to show a matrix visual that summarizes by group, subgroup, but not product, like this:

 

Group   Subgroup   Product    Amount

------    -----------   ---------   ---------

112                                          16332

112       1120

112       1128                           16332

112       1128                  2       16000

112       1128                  2           332       

113                                            4057

113       1130                

113       1138                  4         4000

113       1138                  4             57          

 

Is it possible to achieve this given my data structure?

 

 

  •  

    This is a close as I can get... Disable 'Stepped Layout' Under Row Headers and Change SubTotals to TOP.  See if this helps...

     

     

2 Replies

  • fhill's avatar
    fhill
    Resident Rockstar

     

    This is a close as I can get... Disable 'Stepped Layout' Under Row Headers and Change SubTotals to TOP.  See if this helps...

     

     

    • gvg's avatar
      gvg
      Post Prodigy

      This is partly solves my problem. Thanks for the tip!