function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
lmjohnsonlmjohnson 

Workflow not working on Contains

My workflow show below is not working and gets hung up on the NOT(Contains(.....)). When I remark that line out the workflow fires...help?

 

Auto_Approve_Supplier__c = TRUE &&
NOT(ISBLANK(DC_Email_1__c)) &&
NOT(ISBLANK(Notification_Email_1__c)) &&

NOT(CONTAINS(Type_of_Incident__c, "Foreign Object")) &&
(Submitted__c = TRUE ||
Manual_Push__c = TRUE)

Tejpal KumawatTejpal Kumawat

Hi,

 

Please can you provide all fields types as well as senerio?

lmjohnsonlmjohnson

Type of Incident is a text field. Checking to make sure that this field does not contain the words "Foreign Object". Every line works except the Not(Contains(....)