Creating report view filter queries

Filter queries define what is visible in a report view. The filter query builder is where you define the filter. The filter query builder is on a view's Filter tab.

You can use the following options:

Querying on user-defined values

A powerful way to create report view filter queries is to allow users to enter a user-defined value for the report query. When you choose an attribute and operand, one of the available options in the right pane is Insert a user-defined value.

When you click this option, you can choose to either run the query based on the name of the user running the report or you can prompt the user for a value. When prompting for a value, you can also provide a prompt string that users will see when they run the report that requests the value.

Once a user enters a value, the query runs using that value.

About the "Like" operator

Note that if a user doesn't specify any wild cards (*) in a query, the Like operator adds wildcards (%) to both ends of the string. Here are three examples of using the Like operator: 

Computer.Display Name LIKE "Bob's Machine" queries for: Computer.Display Name LIKE "%Bob's Machine%"
Computer.Display Name LIKE "Bob's Machine*" queries for: Computer.Display Name LIKE "Bob's Machine%"
Computer.Display Name LIKE "*Bob's Machine" queries for: Computer.Display Name LIKE "%Bob's Machine"