Task
Only products within an allowed price range should be exported, for example from 100 to 50000.
Short answer
Add row export conditions to the price column: the price must be greater than or equal to the minimum and less than or equal to the maximum.
How to do it in Eofferix
- Open the price column in the table editor.

The output table keeps only products with an allowed price. - Add an export condition
>= 100.
The conditions work at row level: if the price fails the range, the row is not exported. - Add a second condition
<= 50000. - Run a demo result and confirm that rows outside the range are excluded.
Before / after
The data below is a training example and does not belong to real user files.
Before
source data| sku | price |
|---|---|
| SKU-LOW | 50 |
| SKU-OK | 1290 |
| SKU-HIGH | 150000 |
After
result| sku | price |
|---|---|
| SKU-OK | 1290 |