Task
The export needs a tags field that combines brand, category, color and size with commas.
Short answer
Create tags from brand, then append {category}, {color} and {size}.
How to do it in Eofferix
- Create
tagsfrombrand.
tagscombines brand, category, color and size. - Add a rule that appends
, {category}.
The remaining fields are appended to brand with commas. - Add the same rules for
{color}and{size}. - If the target needs semicolons, change the separator in the rules.
Before / after
The data below is a training example and does not belong to real user files.
Before
source data| brand | category | color | size |
|---|---|---|---|
| Nord | Jackets | black | M |
After
result| tags |
|---|
| Nord, Jackets, black, M |