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
NANDAN KUMAR 24NANDAN KUMAR 24 

validation rule on name should be alphabet only

Maharajan CMaharajan C
Hi Nandan,

Please try the below formula:
 
NOT( REGEX( Name,"[a-zA-Z]*" ) )

Thanks,
Maharajan.C
CharuDuttCharuDutt
Hii Nandan Kumar
Try Below Validation
NOT(REGEX( Name ,"^[a-z  A-Z]*$")))
Please Mark It As Best Answer If It Helps
Thank You!
manisha sahumanisha sahu
Hi Nandan kumar,

Try using below formula:
NOT(REGEX(Name , "[a-zA-Z]")).
nabirasool pinjarinabirasool pinjari
Hiii Nandankuamar,


Pleasre try this formula once

AND(OR(ISBLANK(Name),
              NOT(REGEX( Name,"^[a-z A-Z]*$")))



Thanks,
P.Nabirasool.