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
K_devK_dev 

validation rule on custom picklist

I need a validation rule which status picklist is "converted " then this field must be readonly for all the profiles except to system admin.

 

 

Please help me!

kevin lamkevin lam

AND($Profile.Name <> "System Administrator",
    ISCHANGED(Status),
    PRIORVALUE(Status) = "Converted")

K_devK_dev

This means it will be readonly for all profiles except system Admin?

@anilbathula@@anilbathula@
Hi K_dev

In means of data changing and saving it act like readonly.
but in look and feel it will be editable.