+ 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!!