Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

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
  • Stachu's avatar
    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