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
viswsanathviswsanath 

Validation put in place to require more than two characters in length on Contact First and Last Name

Validation put in place to require more than two characters in length on Contact First and Last Name....can any one give me ans .


Thanks,
Viswa
Vatsal KothariVatsal Kothari
HI,

You can refer below validation rule:
IF(OR(LEN(FirstName) <= 2, LEN(LastName) <= 2), true, false)
If this solves your problem, kindly mark it as the best answer.

Thanks,
Vatsal
kevin lamkevin lam
You don't need IF statement in this case, just
OR(LEN(FirstName) <=2, LEN(LastName) <= 2)