Reputation: 6739
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
Reputation: 172518
You can try to use this check
IS NOT NULL AND NOT LIKE "*[0-9]*"
Upvotes: 1