답변 2개
Hi Minky, Please try the below, is the Next Stage an actual value that you have for the Stage field and assuming it is
AND(
TEXT(StageName) = 'Next Stage',
(
IF(Checkbox1__c ,1,0)+
IF(Checkbox2__c ,1,0)+
IF(Checkbox3__c ,1,0)+
IF(Checkbox4__c ,1,0)+
IF(Checkbox5__c ,1,0)
) < 3
)
Please use the insert field button to select the field API Names of checkbox fields.