I've got a series of reports I'm tasked with maintaining, I know there has to be a better way of doing this but I don't know how to go about it.
The existing reports are all organized with sub-reports, each distinct product is in it's own sub-report. These are problematic to maintain, especially since every few years the person gets promoted, leaves, whatever and then the next person (currently me) has to pick up and learn them.
I would like to put all the various groups in one place, so I can leave documentation saying go Here and change these values instead of digging into all these sub reports and change them.
Example Data:
Product A (sub report)
Queue ID in (17001, 17005, 17010, etc)
Sum(ACD), sum(Abandon), etc
Product B (sub report)
Queue ID in (17002, 17011, etc)
sum(ACD), sum(Abandon), etc.
Output of report sample
All of this data comes from the same table, is it really necessary to have them each in their own sub report? The various Queues in each product can change fairly frequently, I'd like to make it as easy to maintain going forward as possible. I cannot write to the source database so I can't put a table there with the various groupings.
Are individual sub reports the best or what does the collective wisdom offer?
Thanks much for your time, it is appreciated.
The existing reports are all organized with sub-reports, each distinct product is in it's own sub-report. These are problematic to maintain, especially since every few years the person gets promoted, leaves, whatever and then the next person (currently me) has to pick up and learn them.
I would like to put all the various groups in one place, so I can leave documentation saying go Here and change these values instead of digging into all these sub reports and change them.
Example Data:
Code:
Queue_ID ACD Abandon
17001 100 5
17002 50 3
Product A (sub report)
Queue ID in (17001, 17005, 17010, etc)
Sum(ACD), sum(Abandon), etc
Product B (sub report)
Queue ID in (17002, 17011, etc)
sum(ACD), sum(Abandon), etc.
Output of report sample
Code:
Header
Product Group 1
Project A xxx yyy zzz
Project B xxx yyy zzz
Product Summary XXX YYY ZZZ
Product Group 2
Project C xxx yyy zzz
Etc...
All of this data comes from the same table, is it really necessary to have them each in their own sub report? The various Queues in each product can change fairly frequently, I'd like to make it as easy to maintain going forward as possible. I cannot write to the source database so I can't put a table there with the various groupings.
Are individual sub reports the best or what does the collective wisdom offer?
Thanks much for your time, it is appreciated.