Filter Examples
Practical examples for common filtering scenarios. Each example includes exact configuration steps.
Basic filtering examples
Section titled “Basic filtering examples”Show only active records
Section titled “Show only active records”Filter to display only records where status indicates active items.
Configuration:
- Click Add filter
- Select column:
status - Select operator: Equals
- Select value:
Active
Exclude specific values
Section titled “Exclude specific values”Hide records matching certain criteria.
Configuration:
- Click Add filter
- Select column:
category - Select operator: Not Equal
- Select values:
Test,Demo,Internal
Find records containing text
Section titled “Find records containing text”Search for partial matches within text fields.
Configuration:
- Click Add filter
- Select column:
description - Select operator: Contains
- Enter value:
urgent
This matches “urgent”, “Urgent request”, “non-urgent”, etc.
Find records starting with a prefix
Section titled “Find records starting with a prefix”Filter for records where a field begins with specific text.
Configuration:
- Click Add filter
- Select column:
ticket_number - Select operator: Starts With
- Enter value:
INC-
Numeric filtering examples
Section titled “Numeric filtering examples”Filter by threshold
Section titled “Filter by threshold”Show records above or below a numeric threshold.
Configuration:
- Click Add filter
- Select column:
amount - Select operator: Greater Than (or Less Than)
- Enter value:
1000
Filter by range
Section titled “Filter by range”Show records within a numeric range (needs two filters).
Configuration:
- Click Add filter
- Select column:
score - Select operator: Greater Than or Equal
- Enter value:
70 - Click Add filter (second filter)
- Select column:
score - Select operator: Less Than or Equal
- Enter value:
100 - Make sure both are combined with AND
Find zero or null values
Section titled “Find zero or null values”Identify records with missing or zero values.
For zero values:
- Click Add filter
- Select column:
quantity - Select operator: Equals
- Enter value:
0
For null/blank values:
- Click Add filter
- Select column:
quantity - Select operator: Is Blank
Date filtering examples
Section titled “Date filtering examples”Today’s records
Section titled “Today’s records”Filter for records created or modified today.
Configuration:
- Click Add filter
- Select column:
created_date - Select operator: Between
- In start field, type
todayand select “Start of this day” - In end field, type
todayand select “End of this day”
Last 7 days
Section titled “Last 7 days”Show records from the past week.
Configuration:
- Click Add filter
- Select column:
created_date - Select operator: Between
- In start field, type
7and select “Start of day 7 days ago” - In end field, type
todayand select “End of this day”
This month
Section titled “This month”Filter for the current calendar month.
Configuration:
- Click Add filter
- Select column:
transaction_date - Select operator: Between
- In start field, type
this monthand select “Start of this month” - In end field, type
this monthand select “End of this month”
Last month
Section titled “Last month”Filter for the previous calendar month.
Configuration:
- Click Add filter
- Select column:
transaction_date - Select operator: Between
- In start field, type
last monthand select “Start of last month” - In end field, type
last monthand select “End of last month”
Year to date
Section titled “Year to date”Show all records from the start of the year until now.
Configuration:
- Click Add filter
- Select column:
order_date - Select operator: Between
- In start field, type
this yearand select “Start of this year” - In end field, type
todayand select “End of this day”
Specific date range (static)
Section titled “Specific date range (static)”Filter for a fixed date range that won’t change over time.
Configuration:
- Click Add filter
- Select column:
event_date - Select operator: After
- Click the gear icon and select Static time
- Use the date picker to select the start date
- Click Add filter (second filter)
- Select column:
event_date - Select operator: Before
- Click the gear icon and select Static time
- Use the date picker to select the end date
- Combine both with AND
Future dates only
Section titled “Future dates only”Show records with dates in the future.
Configuration:
- Click Add filter
- Select column:
due_date - Select operator: After
- Click the gear icon, ensure Current time is selected
- Set offset to
0 days, 0 hours, 0 minutes(now)
Boolean filtering examples
Section titled “Boolean filtering examples”Active/inactive toggle
Section titled “Active/inactive toggle”Filter for true or false values.
Configuration:
- Click Add filter
- Select column:
is_active - Select operator: Equals
- Select value:
true(orfalse)
Combined filter examples
Section titled “Combined filter examples”High-priority open tickets
Section titled “High-priority open tickets”Find urgent tickets that haven’t been resolved.
Configuration:
- Click Add filter
- Select column:
priority - Select operator: Equals
- Select value:
High - Click Add filter
- Select column:
status - Select operator: Not Equal
- Select values:
Closed,Resolved - Combine with AND
Sales in region for current quarter
Section titled “Sales in region for current quarter”Filter sales data by region and time period.
Configuration:
- Click Add filter
- Select column:
region - Select operator: Equals
- Select value:
North America - Click Add filter
- Select column:
sale_date - Select operator: Between
- In start field, select “Start of this quarter”
- In end field, select “End of this quarter”
- Combine with AND
Either condition (OR logic)
Section titled “Either condition (OR logic)”Find records matching any of several criteria.
Scenario: Show tickets that are either high-priority or overdue.
Configuration:
- Click Add filter
- Select column:
priority - Select operator: Equals
- Select value:
High - Click Add filter
- Select column:
due_date - Select operator: Before
- Set to current time with 0 offset (now)
- Change the logic to OR by clicking the AND/OR toggle
Column comparison examples
Section titled “Column comparison examples”Find profitable transactions
Section titled “Find profitable transactions”Show records where revenue exceeds cost.
Configuration:
- Click Add filter
- Select column:
revenue - Select operator: Greater Than
- Click the Column button (grid icon)
- Select column:
cost
Find mismatched addresses
Section titled “Find mismatched addresses”Identify records where shipping and billing addresses differ.
Configuration:
- Click Add filter
- Select column:
shipping_address - Select operator: Not Equal
- Click the Column button (grid icon)
- Select column:
billing_address
Find records modified after creation
Section titled “Find records modified after creation”Show records that have been updated.
Configuration:
- Click Add filter
- Select column:
modified_date - Select operator: After
- Click the Column button (grid icon)
- Select column:
created_date
Filter Variable examples
Section titled “Filter Variable examples”Connect to dashboard date filter
Section titled “Connect to dashboard date filter”Link a widget’s date filter to a dashboard-level date selector.
Prerequisites: A filter variable for dates must already exist.
Configuration:
- Click Add filter
- Select column:
order_date - Select operator: Between
- Click the Filter Variable button (funnel icon)
- Select the date filter variable
Now when users change the dashboard date filter, this widget updates automatically.
Connect to category selector
Section titled “Connect to category selector”Link a widget to a dashboard category dropdown.
Prerequisites: A string filter variable for category must already exist.
Configuration:
- Click Add filter
- Select column:
product_category - Select operator: Equals
- Click the Filter Variable button (funnel icon)
- Select the category filter variable
Nested group examples
Section titled “Nested group examples”Complex business rule
Section titled “Complex business rule”Find high-value orders that are either new or have special status.
Logic: amount > 10000 AND (status = "New" OR status = "VIP")
Configuration:
- Click Add filter
- Select column:
amount - Select operator: Greater Than
- Enter value:
10000 - Click Add group
- Inside the new group, click Add filter
- Select column:
status - Select operator: Equals
- Select value:
New - Inside the same group, click Add filter
- Select column:
status - Select operator: Equals
- Select value:
VIP - Set the inner group to OR logic
- Keep the outer group as AND logic
Troubleshooting
Section titled “Troubleshooting”No results returned
Section titled “No results returned”If your filter returns no data:
- Check operator direction: “Greater Than 100” excludes 100; use “Greater Than or Equal” to include it
- Verify date ranges: Make sure start date is before end date
- Check AND vs OR: Multiple AND conditions narrow results; OR broadens them
- Check for nulls: Records with null values may be excluded unexpectedly
Unexpected results
Section titled “Unexpected results”If results don’t match expectations:
- Review all conditions: Complex filters may have conflicting conditions
- Check data types: Comparing text “100” to number 100 may behave unexpectedly
- Verify time zones: Date filters use your configured timezone
- Use the preview: For Between filters, click the info icon to see actual date ranges