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
Gwen ONeill 9Gwen ONeill 9 

checkbox validation

Can you create a validation rule that when a checkbox is checked, then Meeting Notes must be completed?  I tried the following, but when I test it  I receive an error telling me I need to complete notes, even though I have entered notes.

IF(Overall_Status__c = True, ISBLANK(Meeting_Notes__c)), false)
Best Answer chosen by Gwen ONeill 9
AnkaiahAnkaiah (Salesforce Developers) 
Hi Gwen,

try with below formula.
AND(Overall_Status__c = True, ISBLANK(Meeting_Notes__c))

If this helps, Please mark it as best answer.

Thanks!!​​​​​​​

All Answers

AnkaiahAnkaiah (Salesforce Developers) 
Hi Gwen,

try with below formula.
AND(Overall_Status__c = True, ISBLANK(Meeting_Notes__c))

If this helps, Please mark it as best answer.

Thanks!!​​​​​​​
This was selected as the best answer
Gwen ONeill 9Gwen ONeill 9
Thank you!  Once again I was making it more detailed than it had to be.