I've tried building this with a tablix, then a matrix but haven't been able to get my desired results - The output I'm looking for is like the below format:
| MONTHS
EMPLOYEE DEPARTMENT GROUP | JAN FEB etc.. (whichever months have data)
-----------------------------------------------------------------------------------------------
Joe Sales A | 5 3
Joe Sales B 2 0
Sam Sales A 0 2
Sam Sales B 1 1
Sam Sales C 0 4
Sam Sales D 3 3
Data looks like
EMPLOYEE Dept Group Month items
Joe Sales A JAN 5
Joe Sales B JAN 2
Joe Sales A FEB 3
Sam Sales B JAN 1
Sam Sales D JAN 3
Sam Sales B FEB 2
Sam Sales C FEB 1
Sam Sales D FEB 4
Sam Sales B FEB 3
--------- row doesn't exist for JOE, GROUP B in FEB so 0 ------------
--------- row doesn't exist for SAM, GROUP A and C in JAN so 0 ------------
I've come very close to creating this with a Tablix, that I created a parent group of MONTH on the ITEMS cell. My output now looks like this:
JAN FEB
EMPLOYEE DEPARTMENT GROUP ITEMS ITEMS
Joe Sales A | 5
Joe Sales A | 3
Joe Sales B | 2
As you can see above, it's not properly putting the group A's on the same line for JAN and FEB, they're on 2 separate lines.
It's like I need to create row groups for EMPLOYEE, DEPARTMENT, GROUP by MONTH?
Any help would be greatly appreciated!