tax calculation in a form

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

Guest

what formula would i use to take a user-defined tax rate in one field, then
calculate the total with tax from a subtotal entered in another field? in
other words, how do i caluclate taxes with a varible (user entered) tax rate?
 
old said:
what formula would i use to take a user-defined tax rate in one
field, then calculate the total with tax from a subtotal entered in
another field? in other words, how do i caluclate taxes with a
varible (user entered) tax rate?

If the amount field is a number field formatted as currency (say) Text1
and the tax field is a number field formatted as % (say) Text2
then check the calculate on exit text box of the second field
and insert the following Word formula field.

{ ={ Text1 } * { Text2 } + { Text1 }}

to give the total plus tax. If you want just the tax, leave off the +
{Text1} bit.


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
thank you - but in the short time that it took you to respond, the cheese
around here decided that we didn't need to calculate tax.

come the revolution...
 

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

Back
Top