database - Microsoft access validation -


i need allow only alphanumeric characters entered field. data type 'short text'.

what 'validation rule' using expression builder?

you can find lots of useful examples validation rules here:
http://allenbrowne.com/validationrule.html

in case -

digits , letters only

is null or not "*[!((a-z) or (0-9))]*" 

accepts z , 0 9, no punctuation or other characters.


Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -