1 件の回答
So when a user chooses Gone to Competitor as the list option you need to make sure they enter something into the Competitor field, right? Assuming so try this: AND(
ISPICKVAL(Closed_Lost_Reason__c,"Gone to competitor"),
ISBLANK(Competitor__c)
)
Youi may need to tweak the field names if that's not their actual name.