You need to sign in to do that
Don't have an account?

How to validate postalCode/Zip field
hi friends,
i am getting problem while validating zip field
i want to use only numbers and text in my zip field...
how to achieve this...
i have used something like this,
NOT(REGEX(Zip__c,'[0-9]'))
but not getting proper result
Hi
You can achieve that in this way
NOT(OR(CONTAINS(Empname__c, ' ') , REGEX(Empname__c, "^[a-zA-Z0-9-/]*$")))
Thanks