Percent Formula

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

I have a form that has as part of it 3 fields called:
Pay
WageBase
Hours
I also have a Text Box called Percent.

I need a formula that will divide the Pay/WageBase/Hours
and show the results in the Percent text box.

Thanks!
 
First, try not to used reserved words as your field names -
change Percent to txtPercent to avoid confusion.

txtPercent = Format(Pay/WageBase/Hours ,"Percent")

See the Format() function in Help for further description.
 
Back
Top