I have SSRS report assignment to print each department overtime summary based on group Event Codes for a given pay date. I got a table with huge records including all information as follows:
PAY_DATE EVENT CODE OT Date DeptID Credits DeptName
2019-09-06 055 2019-05-27 001 24.93 Information Tech
2019-09-06 045 2019-05-27 001 19.34 Information Tech
2019-09-06 010 2019-07-01 003 576.39 Payroll
2019-09-06 010 2019-07-01 001 156.29 Information Tech
2019-09-06 010 2019-07-02 002 576.39 Human Resource
2019-09-06 015 2019-07-02 002 106.39 Human Resource
2019-09-06 015 2019-07-22 001 400.66 Information Tech
2019-09-06 015 2019-08-05 003 280.97 Payroll
2019-09-06 055 2019-08-09 003 69.68 Payroll
2019-09-06 057 2019-08-10 001 627.12 Information Tech
I want to build a SSRS report as following kind of Master/detail report for a given department then repeat on next department:
Dept: Human Resource Pay date: 2019-09-06
EVENT CODE DeptID Credits
010 002 576.39
015 002 106.39
Dept: Information Tech Pay date: 2019-09-06
EVENT CODE DeptID Credits
010 001 156.29
015 001 400.66
045 001 19.34
055 001 24.93
057 001 627.12
Dept: Payroll Pay date: 2019-09-06
EVENT CODE DeptID Credits
010 003 280.97
015 003 69.68
I tried using subreport to display event code and credits on the table for a DeptID and Paydate, it is slow to load data. Can we have other ways to quickly run the report?
Thanks in advance!