Task
A feed stores status or category as short codes, for example A and N. The final file needs readable values.
Short Answer
For a small dictionary, add several replacement rules in one column: A → active, N → inactive.
How to Do It in Eofferix
- Create or open the final
statuscolumn and choose the code column as the source.
The settings button is highlighted under the final status column. - In Transformations, add a rule: condition Current value equals
A, action Replace with, resultactive. - Add the second rule: condition Current value equals
N, action Replace with, resultinactive.
The status settings contain two rules: A is replaced with active and N with inactive. - Save the column settings.
Before / After
Before
source data| sku | status_code |
|---|---|
| SKU-1001 | A |
| SKU-1002 | N |
After
result| sku | status |
|---|---|
| SKU-1001 | active |
| SKU-1002 | inactive |