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
DeptonDepton 

Formula: 3 checkboxes and need 1 of them to be selected before saving the account

Hi,

 

I have 3 checkboxes and need 1 of them to be selected before saving the account.

 

Would be possible to select 2 but I would like users to get an error message if none of these 3 checkboxes are unchecked

 

Thank you.

Best Answer chosen by Admin (Salesforce Developers) 
RArunrajRArunraj

Check Whether the below formula works fine

 

IF( Checkbox1__c == false && Checkbox2__c == false && Checkbox3__c == false,true, false)

 

Thanks,

Arunraj