
Need some help in trying to create a lead validation rule.
I have a series of checkboxes (service types). I need to ensure that at least one of these boxes is ticked before the lead can be saved. What does this formula look like?
2 answers

Hi Courtney,
Try something like this:
NOT(OR(ServiceType1__c, ServiceType2__c, ...))
Another option would be,
IF(ServiceType1__c = TRUE || ServiceType2__c = TRUE, TRUE, FALSE)
And use as many OR (||) as you have checkboxes.
//Linus