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
panduranga123panduranga123 

validation atleast one checkbox to checked from list of checkboxes

Hi all,

 

validation atleast one checkbox to checked from list of checkboxes

 

advance thanks

Best Answer chosen by Admin (Salesforce Developers) 
Kamatchi Devi SargunanathanKamatchi Devi Sargunanathan

Hi,


Try the following,

 

AND( checkbox1__c == false, checkbox3__c == false, checkbox3__c == false, checkbox4__c == false)

 

Error message : Please select atleast one checkbox...!

 

 

 

Hope so this helps you...!

Please mark this answer a Solution and please give kudos by clicking on the star icon, if you found this answer as helpful.

 

All Answers

Kamatchi Devi SargunanathanKamatchi Devi Sargunanathan

Hi,


Try the following,

 

AND( checkbox1__c == false, checkbox3__c == false, checkbox3__c == false, checkbox4__c == false)

 

Error message : Please select atleast one checkbox...!

 

 

 

Hope so this helps you...!

Please mark this answer a Solution and please give kudos by clicking on the star icon, if you found this answer as helpful.

 

This was selected as the best answer
Rahul AgarwalRahul Agarwal

AND(NOT(Chekbox1), NOT(Chekbox2)NOT(Chekbox3)......)

 

Cheers!!