Adding VAT

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
 
C

chas

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

Top