Filter data based on custom conditions to get only the rows that meet your criteria.
Field | Type | Required | Description |
---|---|---|---|
Data to Filter | Data | Yes | The dataset you want to filter (from previous steps) |
Conditions | Conditions | Yes | Filter criteria based on column values and conditions |
Output | Description |
---|---|
Filtered Data | Dataset containing only rows that meet your conditions |
campaign_name | status | cost | clicks |
---|---|---|---|
Summer Sale | Active | 150 | 1200 |
Winter Promo | Paused | 80 | 500 |
Black Friday | Active | 300 | 2500 |
Test Campaign | Active | 20 | 100 |
campaign_name | status | cost | clicks |
---|---|---|---|
Summer Sale | Active | 150 | 1200 |
Black Friday | Active | 300 | 2500 |
Condition | Description | Example Use Case |
---|---|---|
EQUALS | Exact match | Status equals “Active” |
NOT_EQUALS | Does not match exactly | Status not equals “Paused” |
CONTAINS | Contains the text | Campaign Name contains “Sale” |
DOES_NOT_CONTAIN | Does not contain the text | Campaign Name does not contain “Test” |
STARTS_WITH | Begins with the text | Campaign Name starts with “2024” |
ENDS_WITH | Ends with the text | Campaign Name ends with “Mobile” |
GREATER_THAN | Numeric comparison | Cost greater than 100 |
LESS_THAN | Numeric comparison | Clicks less than 1000 |
GREATER_THAN_OR_EQUAL | Numeric comparison | Budget greater than or equal to 500 |
LESS_THAN_OR_EQUAL | Numeric comparison | Cost less than or equal to 200 |
REGEXP_MATCH | Regular expression match | Campaign Name matches pattern |
NOT_REGEXP_MATCH | Does not match regex | Campaign Name does not match pattern |
IN_LIST | Value is in a list | Status in “Active,Enabled,Running” |
NOT_IN_LIST | Value is not in a list | Status not in “Deleted,Removed” |
IS_NULL | Field is empty | Notes is null |
IS_NOT_NULL | Field has any value | Notes is not null |
What happens if no rows meet my conditions?
Can I use OR logic between conditions?
How do I know what field names to use?
What if my field name has spaces or special characters?
Can I filter by calculated values or formulas?
What happens if I reference a field that doesn't exist?
How do I filter for empty or null values?
Can I use regular expressions for complex text matching?