Apr 2, 2003 #1 Terrier IS-IT--Management Jan 29, 2003 18 GB How can I specify the minimum field length in a table? I have a field which MUST be 13 characters long, anything more or less is unacceptable. Advice appreciated.
How can I specify the minimum field length in a table? I have a field which MUST be 13 characters long, anything more or less is unacceptable. Advice appreciated.
Apr 3, 2003 1 #2 cheerio Technical User May 23, 2002 606 GB In table design view key into the validation rule box near the bottom of the screen Len([myfield])=13 substituting the name of the field for myfield If you want to exclude spaces nest a trim function within the Len function. Access is not totally secure on this as a user form can be created that has the rule deleted but that requires a deliberate act. Ken Upvote 0 Downvote
In table design view key into the validation rule box near the bottom of the screen Len([myfield])=13 substituting the name of the field for myfield If you want to exclude spaces nest a trim function within the Len function. Access is not totally secure on this as a user form can be created that has the rule deleted but that requires a deliberate act. Ken
Apr 3, 2003 Thread starter #3 Terrier IS-IT--Management Jan 29, 2003 18 GB Ken thank you, that works a treat. Upvote 0 Downvote