function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sandeep reddy 37sandeep reddy 37 

on validation rules for only letters

i have one text field so in that want to fill only characters can u tell me the formula
Best Answer chosen by sandeep reddy 37
jyothsna reddy 5jyothsna reddy 5
Hi Sandeep,

Please try Validation rule somthing like this 
NOT(REGEX( your field name ,"^[a-z  A-Z]*$")))
I hope it will help you.
If  the answer helped you, mark it as solved.

Regards,
Jyothsna D

 

All Answers

Maharajan CMaharajan C
Hi Sandeep,

If you Don't want to use the numbers in the Text field means use the below Formula,
Formula-: ISNUMBER(Insert Field Name)
Let me Know is that helpfull for you.

Thanks
Raj.
(Sweet Potato Tec)

 
sandeep reddy 37sandeep reddy 37
but dont requers any numbers& special characters only i need  alphabets 
jyothsna reddy 5jyothsna reddy 5
Hi Sandeep,

Please try Validation rule somthing like this 
NOT(REGEX( your field name ,"^[a-z  A-Z]*$")))
I hope it will help you.
If  the answer helped you, mark it as solved.

Regards,
Jyothsna D

 
This was selected as the best answer
sandeep reddy 37sandeep reddy 37
i got it but why we use  special simbals among that tellme please