4 respostas
Hi Eric, You can accomplish this using a validation rule, your VR will be something like below
AND(
ISCHANGED(StageName),
TEXT(PRIORVALUE(StageName)) = "Old Stage",
TEXT(StageName) = "New Stage",
OR(
Checkbox_1__c = FALSE,
Checkbox_2__c = FALSE,
Checkbox_3__c = FALSE
)
)
Please use insert field names to get the api names of your checkbox fields