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
Nils11Nils11 

Validation rule to restrict lead update based on perticular record type

Hi,

I have 4 record types, once lead created of "ABC" record type values should not be able to updated of ABC record type.

Any pointers on this ?

Raj VakatiRaj Vakati
The Below validation rule will allow you to edit the records after saving with ABC records type.

What i would say is create a custom permission and assigned to the certain user who can edit the record or check based on profile 
AND
(
	RecordType.Name = 'ABC',
	Not(ISNEW())	
)



  
Lokesh KumarLokesh Kumar
HI,

Try the below VR.
AND(
         NOT(ISNEW()),
       $RecordType.DeveloperName = "ABC",
)

Thanks
Lokesh