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
surya kanadhipatlasurya kanadhipatla 

Urgent : Help needed for process builder criteria

 Hi All...

I have a multiselect field Production_Region__c contains values A,B,C,D and E.

Using process builder have to create a new record if Production_Region__c field value does not contain value D.
For example: If user selects values A and D , process should not create any new record
If any one or more values(A,B,C and E) except value D is selected, process should create a new record

can any one suggest me some approach?
Best Answer chosen by surya kanadhipatla
Prasad Avala(SFDC)Prasad Avala(SFDC)
Hi ,
Please try includes function, salesforce introduced this function in process builders so for multi select fileds its the best.

Please use  "Formula evaluates to true" instead "conditions are met" and try the below syntax:

Formula evaluates to true

Includes(Field__c ,"Value")

All Answers

Prasad Avala(SFDC)Prasad Avala(SFDC)
Hi ,
Please try includes function, salesforce introduced this function in process builders so for multi select fileds its the best.

Please use  "Formula evaluates to true" instead "conditions are met" and try the below syntax:

Formula evaluates to true

Includes(Field__c ,"Value")
This was selected as the best answer
surya kanadhipatlasurya kanadhipatla
Prasad,
It worked with a minor change as below

Not(Includes(Production_Region__c ,"D"))

Awesome Help...Great...