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
TrimbleAgTrimbleAg 

Comparing Check Boxes

Ok so this should be simple, im just not getting it...

 

3 check boxes A, B, and, C. One has to be selected in order to save. Customer does not want a multiple picklist...

 

Help Please!

 

Thanks,

Patrick

Best Answer chosen by Admin (Salesforce Developers) 
BA_AdminBA_Admin

Try this

 

OR((A = false),(B = false),(C = false))

All Answers

BA_AdminBA_Admin

Try this

 

OR((A = false),(B = false),(C = false))

This was selected as the best answer
TrimbleAgTrimbleAg

Thanks you for your help!

 

Final Resolution:

 

And((A = false),(B = false),(C = false))

 

The "OR" Stamenet made it so all the boxes had to be checked.

 

Thanks,

PB

 

 

Steve :-/Steve :-/

or you could try

CASE(Checkbox1, 1, 0) +
CASE(Checkbox2, 1, 0) +
CASE(Checkbox3, 1, 0) < 1