Calculating VAT (value added tax)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I understand that many US people may use this forum more than the UK.....but
here goes...

I want to calculate the VAT element of an amount, for example:
£35,000 sales
@ 17.5%
amount less VAT is: £29,787.23p
VAT element is: £5,212.76p
I need a formula that just gives me the VAT element.

Many thanks US !!!

Rod
 
Hi Rod

To add VAT use:

=A1*(1+18%)

To find net of VAT amount use:

=A1/(1+18%)

To find the VAT content

=A1-A1/(1+18%)
 
Rod,

I start by creating a name called VAT (menu Insert>Name>Define Name, name of
VAT, RefersTo value of =17.5%)

To add VAT to an amount is simply

=A1*(1+VAT) - 1+VAT because 1 represents 100% of the amount, the VAT is
17.5%

To calculate the amount less VAT on an amount that has already had VAT
charged

=A1/(1+VAT)

To calculate the VAT amount, take this previous figure from the original
amount

=A1-A1/(1+VAT)

And finally, because this is money, it is best to round to the nearest penny

=ROUND(A1*(1+VAT) ,2)
=ROUND(A1/(1+VAT),2)
=ROUND(A1-A1/(1+VAT),2)

BTW, there are plenty of UKers here, and Ron is from the Netherlands, and we
have Germans, Norwegians, et al, all of whom understand VAT. It isn't all
US.

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top