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
Ajeath EgneswaranAjeath Egneswaran 

Validation Rules for Check Box

Hi, I have a created a check box field named "Is Credited". I want to write a validation rule "Is Credited is not true" so I used NOT(Is_Credited__c) but it seems to be wrong. Can anyone help me with the right syntax?
Jerun JoseJerun Jose
The formula syntax is correct. You can use the debug logs to verify the value that is being passed during the validation rule and find why the validation rule is not working for you. 
Vershley JoyejobVershley Joyejob

Is_Credited__c <> true

Try it!