You might want to set the Validation Rule property to
Like "*[a-zA-Z]" And Not Like "* *"
This will allow any number of characters to be entered and won't accept
numbers or spaces.
Someone more familiar with Regular Expressions might have a better solution.
is neater, but like your expression it may not be satisfactory
satisfactory because it excludes accented characters and characters that
are alphabetical in some languages (such as å ä ö in Swedish). I think
the best that can be done with a validation rule is something like this
but with a longer list of letters:
Not Like "*[!A-Za-zÁÅÄÉáéåäÖö]*"
You might want to set the Validation Rule property to
Like "*[a-zA-Z]" And Not Like "* *"
This will allow any number of characters to be entered and won't accept
numbers or spaces.
Someone more familiar with Regular Expressions might have a better solution.
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.