Combine multiple reports into one

2017-08-20

This article aims to establish a strategy to combine two or more reports into one by using the code of your application. This can be useful when you want to combine similar reports according to their category.

To append a report to the previous one use the method Prepare of the Report object. It is necessary to provide value TRUE as a parameter of the method.

Let us consider an example.

Create an application WindowsForms. Add a reference to FastReport.dll library to the project.

Then, add three buttons on the form: Report 1, Report 2, Combined report. Next, double click on the first button.

Now we are using the library FastReport:

1
using FastReport;

 Set the report's path:

1
string report_path = @"K:\MyDocuments\";

 Now add the code to the first button:

1
2
3
4
5
6
7
 private void button1_Click(object sender, EventArgs e)
 {
 Report report1 = new Report();
 Report1.Load(report_path + "report1.frx");
 Report1.Prepare();
 Report1.ShowPrepared();
 }

 Here, we have created a report instance, downloaded the report, prepared it and showed. The report template looks like this:

Now double click on the second button:

1
2
3
4
5
6
7
 private void button2_Click(object sender, EventArgs e)
 {
 Report report2 = new Report();
 Report2.Load(report_path+"report2.frx");
 Report2.Prepare();
 Report2.ShowPrepared();
 }

 The procedure here is the same as with the first button. A report template is also similar:

Add the code to the third button:     

1
2
3
4
5
6
7
8
9
 private void button3_Click(object sender, EventArgs e)
 {
 Report report1 = new Report();
 report1.Load(report_path + "report1.frx");
 report1.Prepare();
 report1.Load(report_path + "report2.frx");
 report1.Prepare(true);
 report1.ShowPrepared();
 }

As you can see, we have created a report object - report1. Then, we loaded the first report and prepared it. After that, we have loaded the second report and prepared it as well. In the last line of the code we have displayed the report object. Bring the line report1.Prepare(true) to notice. As a function parameter we provide the value TRUE. This means that the current report is joined to the previous one. Using this example you can consistently join any number of reports to each other.

Let us start our application:

 

If we click the Report 1 button, we get our first report:

 

 Click the second button to see the second report:

 

And finally, click the third button:

In this case, we get a report of two pages. The first one displays the first report, the second one shows the second report.

As can be seen from the above, the process of combining two reports into a single report does not present any difficulties and troubles.

.NET FastReport
October 13, 2025

New Features for Exporting Images to Microsoft Word in FastReport .NET

In the latest version of FastReport .NET we have added new image export features. Now you can independently adjust the balance between the quality and size of the final document.
October 13, 2025

How to Use Excel Formulas in a Report When Exporting to MS Excel

Starting with version FastReport .NET 2026.1, it is now possible to export formulas to Microsoft Excel. It is important to set up formula exports correctly and follow the syntax.
September 30, 2025

How to Install the FastReport .NET Report Designer with Pre-installed Plugins

Read the article as from version 2025.2.5 for FastReport .NET WinForms and FastReport .NET WEB allows you to install a report designer with all plugins without building dll files.

© 1998-2025 Fast Reports Inc.