Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I append multiple reports together?

I have a number of reports that need to be both run separately and also as a group.

I've created these reports and was hoping I could just create a form where I could just append report1, report2, report3, etc. together without creating a different report and making all of those reports subreports.

Is this possible?


Edit: I'm displaying it in the .NET WinForms control, but it will also be exported to PDF and perhaps DOC, XLS etc...

like image 458
Nathan Koop Avatar asked May 28 '09 14:05

Nathan Koop


2 Answers

Create a third report that has the first N reports setup as sub-reports in the header one after the other. Why is this not a good option for you?

Possibly you could post-append. What is the output format?

like image 129
Kieveli Avatar answered Sep 22 '22 10:09

Kieveli


use the option Kieveli suggested and show and hide the subreports depending on the user's choice if you want a more dynamic solution.

like image 45
Gerrie Schenck Avatar answered Sep 23 '22 10:09

Gerrie Schenck