Conditionally Filter Report Data
This document describes how to filter a report's data based on a specific condition.
-
Switch to the Field List panel, select the Parameters node and click Add parameter.
-
Specify the parameter name and description, set its type to Number (decimal).

-
Select the report's detail band, switch to the Expressions panel and click the Visible property's ellipsis button.
-
In the invoked Expression Editor, specify the visibility condition:
Iif( [UnitPrice] >= ?minUnitPrice, true, false)
The expression above makes the Visible property return True or False depending on whether the field value is greater or equal to the specified parameter value.
-
Switch to Print Preview to see the result.
