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
Abhishek chauhan 20Abhishek chauhan 20 

i want create a validation rule in account if "permission granted" is 'True' then show error message "Contact to admin"

Arun Kumar 1141Arun Kumar 1141
Hi,
You can create a validation rule by following this:-
Create a  Validation Rule by giving a name
Under the "Error Condition Formula" section, enter the following formula:
Permission_Granted__c = true
Under the "Error Message" section, enter :
Contact the admin.
Click on the "Save" button to save the validation rule.

Please mark it as best answer if this helps
Thanks