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

Validation Rule to Avoid Special characters except
I need to put below validation in description field -
Allowed characters should be - a-z A-Z 0-9 Space and Special Characters are & ( ) - . and the description field must start with a-z A-Z
can anyone help me with regrex expression for this validation?
I have tried this regrex expression but second condition is not getting executed.
NOT(REGEX( Favoring__c ,"^[a-zA-Z0-9,. ()&-]{1,}$" ))
Hiii Seishti
NOT(REGEX( fieldName , "^[a-zA-Z0-9_]*$"))