Newbies chaseae Posted February 11, 2002 Newbies Posted February 11, 2002 Is there a way to limit the amount of characters that can be entered into a number field? I would like to create a separate 5-digit zip code and zip+4 fields and I want the cursor to automatically jump to the zip+4 field after the user enters the 5-digit zip code. Thanks in advance for any help!!
Korky Posted February 11, 2002 Posted February 11, 2002 You can easily limit the number of characters in a field in v5.5 by validating the field and selecting the appropriate option. In earlier versions use validation by calculation with the following:- Length(Zip) <= 5
Fitch Posted February 11, 2002 Posted February 11, 2002 It would be nice, but you can't make the cursor automatically jump to the zip+4 field, you have to tab. One alternative would be to have a field that calculates the zip+4 after the fact. I.e., enter all 9 digits in one field, then have another field do the formatting: Left(Zip, 5) & "-" & Right(Zip,4) (Be sure to use TEXT fields for zips!)
Recommended Posts
This topic is 8392 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now