Category: Transform / Filters
This action calculates an expression for every row and keeps only rows where this expression is TRUE. All other rows are removed. If no rows satisfy the condition then all rows are removed.
Setting | Description |
---|---|
Expression | Enter an expression that evaluates to a boolean TRUE/FALSE result. The expression will be applied to each record and remove records that do not meet the criteria (evaluate to FALSE). |
The expression must be a valid condition – it must return either TRUE or FALSE for any row in the table. If it results in a non-boolean value (i.e. not TRUE or FALSE) for at least one row it will cause a project execution error.
Examples of valid conditions:
[Amount]=0 [Length] * [Width] * [Height] <= 1000 contains([City], 'York') not isempty([Email]) [Date] >= #2024-02-01 and [Date] <= #2024-02-29
Find all mountains that are taller than 8600 m.
Rank | Mountain | Height (m) |
---|---|---|
1 | Mount Everest | 8848.86 |
2 | K2 | 8611 |
3 | Kangchenjunga | 8586 |
4 | Lhotse | 8516 |
5 | Makalu | 8485 |
6 | Cho Oyu | 8188 |
Rank | Mountain | Height (m) |
---|---|---|
1 | Mount Everest | 8848.86 |
2 | K2 | 8611 |
Expression: [Height (m)] > 8600