How to filter the built matrix

2021-06-23

In FastReport, the Matrix object allows us to filter data. This is one of the most popular functionalities and many users like to use it. However, sometimes filtering the original data is not an option.

Let's take a look at the matrix below.

Source matrix

As you can see, these are sales statistics by employees for 5 years. There are no statistics for Steven Buchanan employee for 2011, 2012 and 2015. This means that Steven will disappear from the matrix if we filter the matrix by year and count out 2013 and 2014.

To complete the picture, you need to count all employees, even if they did not have sales for the reporting period. In this case, you will have to use one of the options:

1) to artificially enrich the raw data with zero values for each year in which the employee had no sales;
2) to filter the already built matrix by removing unnecessary columns.

In the report template:

Report template

Let’s add the BeforePrint event for the Year cell:

We add the BeforePrint event for the Year cell

With the following code:

private int index = 1;
 private List<int> removeColumns = new List<int>();
 
 private void Cell4_BeforePrint(object sender, EventArgs e)
 { 
 if (new List<int>(){2013, 2014}.Contains((int)Cell4.Value))
 {
 removeColumns.Add(index); 
 }
 index++; 
 }

Here we have set the indexes of the columns we want to delete. Now we will create a ModifyResult event handler for the matrix to edit the already built “matrix” object:

 private void Matrix1_ModifyResult(object sender, EventArgs e)
 {
 removeColumns.Reverse();
 foreach (int del in removeColumns)
 { 
 Matrix1.ResultTable.Columns.RemoveAt(del);
 }
 }

You need to delete from the end — from the largest index, because when deleting columns or rows, the index of all subsequent ones is shifted. Therefore, the list of indexes for deletion was built in reverse order using the Reverse () method. Next, we simply deleted the columns for the corresponding indices. Let's see what we have in the end:

Summary table

The columns for 2013 and 2014 disappeared from the matrix, but employee Steven Buchanan remained. We have the desired effect! You can also delete rows you don't need using another collection Matrix1.ResultTable.Rows. Now you know how to filter a matrix when data filtering is not an option.

.NET .NET FastReport FastReport Filtering Filtering Matrix Matrix
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.