All Collections
Frequently Asked Questions (FAQ)
Website touchpoints
The prices within our content are without VAT, but I want to display specific prices including VAT. How can I add VAT to my item prices?
The prices within our content are without VAT, but I want to display specific prices including VAT. How can I add VAT to my item prices?
Odin Bergman avatar
Written by Odin Bergman
Updated over a week ago

The easiest way to fix this is by creating a field function:
https://app.datatrics.com/project/field-functions

We have created an example for you which you can use:

output(new Intl.NumberFormat('nl-NL', {style: 'currency', currency: 'EUR'}).format(data.price * 1.21));

In order to use this within your touchpoint:
{{#fieldfunction price_vat price=item.price}}

This will print out the price multiplied by 1.21 (so including 21% tax).

For more information about field functions, click on this link.

Did this answer your question?