Adding a tax % to currency value from another textbox in form.

S

SammyH

Hi,

As the subject states I'm having trouble with adding values from text boxes.
I want to get a value from a currency field and times it by 17.5% and put the
result in a new text box. How do I do this please? Many thanks.
 
B

BruceM

In the Control Source of an unbound text box:
=[YourCurrencyField] * .175
Choose Currency as the Format for the unbound text box.
 
Top