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
lokesh lokkilokesh lokki 

Create a validation to restrict all the users except System Admin users not to change Project Name once it’s created.

validation  rule certira..???
AnkaiahAnkaiah (Salesforce Developers) 
Hi Lokesh,

Try with below formula
AND(
ISCHANGED(Project_Name__c),
$Profile.Name <> "System Administrator")
If this helps, Please mark it as best answer.

Thanks!!
Sai PraveenSai Praveen (Salesforce Developers) 
Hi Lokesh,

You can use the below validation rule.


AND(ISCHANGED( Name ), $Profile.Name !='System Administrator')

If this solution helps, Please mark it as best answer.

Thanks,