Filtering Report Data in the Report

Filters help you control which data is displayed and processed in a report. You can specify filters for a dataset, a data region, or a group, in any combination.

When possible, filter the data on the data source before it is retrieved for a report by modifying the query to include query parameters to restrict which data is retrieved. For more information, see Filtering Report Data at the Source.

Specify filters for report items when you cannot filter data at the source. For example, use report filters when the data source does not support query parameters, or you must run stored procedures and cannot modify the query, or a parameterized report snapshot displays customized data for different users.

Choosing Where to Set a Filter

Determine where you want to set a filter by the effect you want to achieve in your report. At run time, the report processor applies filters in the following order: on the dataset, and then on the data region, and then on groups from the top down in each group hierarchy. On a table, matrix, and list, filters for row groups, column groups, and adjacent groups are applied independently. On a chart, filters for category groups and series groups are applied independently. When the report processor applies the filter, all filter equations are applied in the order they are defined on the Filter page of the Properties dialog box for each report item, which is the equivalent of combining them with Boolean AND operations.

The following list compares the effect of setting filters on different report items:

  • On the dataset   Set a filter on the dataset when you want one or more data regions that are bound to a single dataset to be filtered in the same way. For example, set the filter on the dataset that is bound to both a table that displays sales data and a chart that displays the same data.

  • On the data region   Set a filter on the data region when you want one or more data regions that are bound to a single dataset to provide a different view of the dataset. For example, set the filter on one Table data region to display the top ten stores for sales and a different Table data region to display the bottom ten stores for sales in the same report.

  • On the row or column groups in a Tablix data region   Set a filter on a group when you want to include or exclude certain values for a group expression to control which group values appear in the table, matrix, or list.

  • On the details group in a Tablix data region   Set a filter on the details group when you have multiple detail groups for a data region and want each detail group to display a different set of data from the dataset.

  • On the series or category groups in a Chart data region   Set a filter on a series or category group when you want to include or exclude certain values for a group expression to control which values appear in the chart.

Creating a Filter Equation

At run time, the report processor converts the value to the specified data type, and then uses the specified operator to compare the expression and value. The following list describes each part of the filter equation:

  • Expression   Defines what you are filtering on. Typically, this is a dataset field.

  • Data Type   Specifies the data type to use when the filter equation is evaluated at run time by the report processor. The data type you select must be one of the data types supported by the report definition schema.

  • Operator   Defines how to compare the two parts of the filter equation.

  • Value   Defines the expression to use in the comparison.

The following sections describe each part of the filter equation. For examples of filter equations, see Filter Equation Examples (Reporting Services).

Expression

When the filter equation is evaluated by the report processor at run time, the data types for the expression and the value must be the same. The data type of the field you select for Expression is determined by the data processing extension or data provider that is used to retrieve data from the data source. The data type of the expression that you enter for Value is determined by Reporting Services defaults. The choices for data type are determined by the data types supported for a report definition. Values from the database might be converted by the data provider to a CLR type. For more information, see Understanding Report Datasets.

Data Type

For the report processor to compare two values, the data types must be the same. The following table lists the mapping between CLR data types and report definition data types. Data that you retrieve from a data source might be converted to a data type that is different by the time it is report data. For more information, see Understanding Report Datasets.

Report Definition Schema Data Type

CLR Type(s)

Boolean

Boolean

DateTime

DateTime, DateTimeOffset

Integer

Int16, Int32, UInt16, Byte, SByte

Float

Single, Double, Decimal

Text

String, Char, GUID, Timespan

In cases where you must specify a data type, you can specify your own conversion in the Value part of the expression.

Operator

The following table lists the operators that you can use in a filter equation, and what the report processor uses to evaluate the filter equation.

Operator

Action

Equal, Like, NotEqual, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual

Compares the expression to one value.

TopN, BottomN

Compares the expression to one Integer value.

TopPercent, BottomPercent

Compares the expression to one Integer or Float value.

Between

Tests whether the expression is between two values, inclusive.

In

Tests whether the expression is contained in a set of values.

Value

The Value expression specifies the final part of the filter equation. The report processor converts the evaluated expression to the data type that you specified, and then evaluates the entire filter equation to determine if the data specified in Expression passes through the filter.

To convert to a data type that is not a standard CLR data type, you must modify the expression to explicitly convert to a data type. You can use the conversion functions listed in the Expression dialog box under Common Functions, Conversion. For example, for a field ListPrice that represents data that is stored as a money data type on a SQL Server data source, the data processing extension returns the field value as a System.Decimal data type. To set a filter to use only values greater than $50000.00 in the report currency, convert the value to Decimal by using the expression =CDec(50000.00).

This value can also include a parameter reference to allow a user to interactively s a value on which to filter. For more information, see Filter Equation Examples (Reporting Services).

See Also

Tasks

How to: Add a Filter (Reporting Services)

Reference

Expression Examples (Reporting Services)

Concepts

Adding Parameters to Your Report

Filtering Data in a Report

Using Expressions (Reporting Services)

Working with Data Types in Expressions (Reporting Services)

Filtering Report Data in the Report

Filtering Data in a Report