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
mvr123mvr123 

phone number must be a 10 digits

i want to write the entered phone number must be 10 digits how to write a validation rule,

ManohardontineniManohardontineni

AND( NOT( ISBLANK(Zip__c) ) ,
OR(ISPICKVAL(Country__c, '')),
NOT(REGEX( Zip_Postal_Code__c ,
"\\d{5}(-\\d{4})?")))