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
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)))