Forum Discussion
Anonymous
3 years agoNot applicable
Remove VAT
Hi All, FACT TABLE[Amount] My 'Amount' column contains VAT. What is the proper way of removing VAT. or divide by 1.2 Many thanks, JT
- 3 years ago
You could modify it at source/in Power Query, so that the data loaded would be without VAT.
If VAT is always 1.2, and there are no different rates depending on product/time then you could use a measure:
Amount (no VAT) = SUM('FACT TABLE'[Amount]) / 1.2
Stachu
3 years agoCommunity Champion
You could modify it at source/in Power Query, so that the data loaded would be without VAT.
If VAT is always 1.2, and there are no different rates depending on product/time then you could use a measure:
Amount (no VAT) = SUM('FACT TABLE'[Amount]) / 1.2Anonymous
3 years agoNot applicable
Thank you Stachu,
Nice and easy solution. Thank you very much.
Best,
JT