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

RegEx validation for numeric value only
I have one text field.
I want a RegEx validation so that user only will be able to fill numeric value (no any Character nor any special symbol).
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
I have one text field.
I want a RegEx validation so that user only will be able to fill numeric value (no any Character nor any special symbol).
Try this formula :-
NOT(REGEX(Ur_fieldname__c , "[0-9]{3}"))
In flower braces give the limit how many numbers you want to enter exactly.i have given 3 numbers.
Hi Nikhi,
Use this below validation rule to accept only numeric value,
NOT(REGEX( Name ,"^[a-z A-Z]*$"))
Where Name is your Field Name.
Mark this solution if you found as Best and give kudos...
Thanks and Regards,
Arunkumar | Salesforce Certified Developer
See the prints: