How can I apply multiple price calculations (markup, VAT, fees) using conditions?
You can apply multiple price modifications—such as markup, VAT, or fixed fees—by multiplying and adding values inside the Price (Then) field of a price condition.
Examples from real use cases:
• To apply both markup and VAT: 11.13*1.15 (first takes feed price, then applies 13% markup and 15% VAT).
• To add fixed and percentage increases based on a condition (e.g., price < 300): *1 + 7 *1.20 *1.22
• To set tiered rules, create multiple conditions (top to bottom priority) such as:
cost <= 5 → *1.9055 + 3
cost > 5 and cost < 10 → *1.648 + 3
... and so on.
• If feed price overlaps across ranges (e.g., 20.004 is >20 and <20.01), adjust your numeric ranges to avoid overlap, e.g., use >20.00001.
These rules allow full flexibility for combining multipliers, additions, or conditional branching depending on feed values or store values.
Updated on: 20/05/2026
Thank you!
