
ISPICKVAL(LeadSource , "Partner - Indirect Sales"),
ISPICKVAL(LeadSource , "Partner - Dev Kit"),
ISBLANK( Partner_Account__c ))
I would like the Partner account field to be required only when these parnter values are selected. Right now, it does not trigger at all. If I place an OR formula into this rule:
AND(
OR(
ISPICKVAL(LeadSource , "Partner - Indirect Sales"),
ISPICKVAL(LeadSource , "Partner - Dev Kit"),
ISBLANK( Partner_Account__c )))
It will trigger regardless of the picklist value selected. What am I missing here?
3 respostas
Try this :
AND(
OR(
ISPICKVAL(LeadSource , "Partner - Indirect Sales"),
ISPICKVAL(LeadSource , "Partner - Dev Kit")
),
ISBLANK( Partner_Account__c ))