Adding VAT

  • Thread starter Thread starter Wev
  • Start date Start date
W

Wev

Hi all
I am new to Access and am trying to create a table and form for costing
parts.
Could someone tell me how to automatically add 17.5% VAT to a price in
another field.
TIA
Wev
 
Hi Wev,

Do you need to store this information permanently or
calculate it when you need it? The second option is
preferable - why store when you can calculate when needed.

You can use the following calculations in the
controlsource of unbound textboxes (or in a query without
the =).

To calculate the VAT amount -
=[ValueField]*0.175

To calculate including VAT -
=[ValueField] + [ValueField]*0.175

hth

chas
 

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

Access Query problem 1
multiple IIf statement doesn't work - please help 0
New VAT Rate 2
UK VAT question 4
vat rate calculator 2
Vat and Zero Rated 18
Access 2003 : Simple DB Design 2
Fuel VAT Calculations 5

Back
Top