Creating a Basic Filter |
In the navigation pane of the Database Setup dialog, you can use the Filter node to create a basic filter to select the records that are printed at print time. When you use this basic filter, the print operator does not need to perform any additional tasks. When the print command is sent, the filter is automatically applied, and only those records that meet the filter criteria are displayed.
|
Supported filter criteria for the database connection include the following:
|
Examples
The following is an example of a single filter that searches for records in the database that have entries in the City field that equal "Fargo".
AND
City Equals Fargo
A joined filter uses a conditional joiner, such as "And" or "Or". The following is an example of a joined filter that searches for records in the database that have entries in the State field that equal "CA" and values in the Age field that are greater than "35".
AND
State Equals CA
Age Is greater than 35
The following is an example of a filter that searches for records in the database that have entries in the State field that equal "WA" or "CA".
OR
State Equals WA
State Equals CA
Related Topics