user2650277
user2650277

Reputation: 6739

Allow everything except Numbers in Access

I need a Validation Rule that will allow every characters except Numbers in a specific field.Space must be allowed but field must not be null

Upvotes: 0

Views: 62

Answers (1)

Rahul Tripathi
Rahul Tripathi

Reputation: 172518

You can try to use this check

IS NOT NULL AND NOT LIKE "*[0-9]*"

Upvotes: 1

Related Questions