I’ve got a report that is supposed to list the different managers and for each manager. It shows a summary of all the commission that his/her employees have earned and then after that it shows the details for each employee. This one report lists all the managers for the company one after another with their corresponding employees.
So for example if Manager 1 has Employee A who made commission of $4 and $7 and Manager 1 also has Employee B who has made commission of $5 and $4 the report should look something like this:
I’m not even getting that far. This report works just fine when I’ve got the two group sections and no summary. I’ve got the top level (ReportSection) that has the DataStream which returns all the data for the report. Then I’ve got a GroupSection that groups by manager and in the content of that I’ve got another GroupSection that groups by the employee.
So that report returns:
Then I add a SequentialSection to the content of the grouping by manager. I stick the group by employee inside that sequential section and add nothing else. This then breaks both grouping functions. The report then turns into this:
Does anyone have any ideas on how to get the group section to work with the sequential section?
Thanks!
So for example if Manager 1 has Employee A who made commission of $4 and $7 and Manager 1 also has Employee B who has made commission of $5 and $4 the report should look something like this:
Code:
Mgr 1 - Summary
Emp A $11
Emp B $9
Mgr 1 – Details
Emp A
Sale1 $4
Sale2 $7
Emp B
Sale1 $5
Sale2 $4
Mgr 2 – Summary
… etc
I’m not even getting that far. This report works just fine when I’ve got the two group sections and no summary. I’ve got the top level (ReportSection) that has the DataStream which returns all the data for the report. Then I’ve got a GroupSection that groups by manager and in the content of that I’ve got another GroupSection that groups by the employee.
So that report returns:
Code:
Mgr 1 – Details
Emp A
Sale1 $4
Sale2 $7
Emp B
Sale1 $5
Sale2 $4
Mgr 2 – Details
… etc
Then I add a SequentialSection to the content of the grouping by manager. I stick the group by employee inside that sequential section and add nothing else. This then breaks both grouping functions. The report then turns into this:
Code:
Mgr 1 – Details
Emp A
Sale1 $4
Mgr 1 – Details
Emp A
Sale2 $7
Mgr 1 – Details
Emp B
Sale1 $5
Mgr 1 – Details
Emp B
Sale2 $4
Mgr 2 – Details
… etc
Does anyone have any ideas on how to get the group section to work with the sequential section?
Thanks!