Currency Input Mask

J

JessM

How to you set up a currency input mask for a field on a form? I want people
to be able to enter from 0 to 100 million dollars.

Thanks!
 
L

Linq Adams via AccessMonster.com

You're not really talking about an Input Mask. An Input Mask can only control
how many digits are entered. If you can enter $1,000,000 you can enter $1,123,
456 or $9,000,000! What you need to do is set up ***validation*** for the
field or control (you can it it at he table level or the form level) so that
no more than 1,000,000 can be entered. You can do this thru the Validation
Property, at table or form level, or thru code at the form level, using
validation code in the control's BeforeUpdate event..
 

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