Hi,
I'd like to summarize my data by 5 different fields and add an element to each field "All" that contains the summarized data, which I have mostly done (sample workflow attached). The issue I'm having is that the "All"s don't intersect. For example,
| Source | Month | Store | Product | Segment | Device | Payment Type | Value 1 | Value 2 |
| sys | 2016-02-01 | Merchandise | Basic | Standard | Mobile | Credit | 1 | 1 |
| sys | 2016-02-01 | Gift | Basic | Standard | Tablet | Cash | 1 | 1 |
| sys | 2016-02-01 | All | Basic | Elite | Tablet | Cash | 1 | 1 |
| sys | 2016-02-01 | All | Basic | Standard | Mobile | Cash | 2 | 2 |
| sys | 2016-02-01 | Gift | All | Elite | Tablet | Cash | 1 | 1 |
| sys | 2016-02-01 | Gift | All | Elite | Tablet | Credit | 1 | 1 |
This works fine if I only want to see "All" Store broken down by the various Products, Segments, etc. But if I want to see "All" Store and "All" Product by Segment, Device and so on, it doesn't work since there is only one "All" per row (the "All"s don't intersect at the row level). I'm not quite sure how to explain this more clearly, so my apologies for any confusion. Thanks for the help.