Percent Formula

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!
 
J

jmonty

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.
 

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


Top