Skip to main content
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 respuestas
  1. 19 ago 2019, 21: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