You need to sign in to do that
Don't have an account?
panduranga123
validation atleast one checkbox to checked from list of checkboxes
Hi all,
validation atleast one checkbox to checked from list of checkboxes
advance thanks
function readOnly(count){ }
You need to sign in to do that
Don't have an account?
Hi all,
validation atleast one checkbox to checked from list of checkboxes
advance thanks
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
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.
AND(NOT(Chekbox1), NOT(Chekbox2), NOT(Chekbox3)......)
Cheers!!