Skip to main content
Christi Palmer (Delta Dental) 님이 #Email에 질문했습니다
This is what I have:

 

AND (RecordType.Name = "Form Change",  CONTAINS (CreatedBy.Email, "Mcore"),  ISBLANK(TEXT(picklist_Type__c)))

 

The rule works if I use other criteria such as a profile = standard user, but I would like it to work with the email address. 
답변 6개
  1. 2019년 8월 19일 오후 9:15

    Ahh, that's the domain. But, Mcore & Mcorecorp both contain "Mcore" so I think that's what's causing the issue. What if you exclude the one that contains "corp" instead? Like this:

    AND(

    RecordType.Name = "Form Change",

    NOT(CONTAINS(CreatedBy.Email, "corp")),

    ISBLANK(TEXT(picklist_Type__c)))

0/9000