Skip to main content
Hi,

 

I need help urgent, how to put validation rules from picklist to multi picklist.

 

e.g:- If picklist value is "yes" then in multi picklist it should be "strawberry" not all multi picklist should be mandatory on "strawberry" should be mandatory.

 

.

 

 
1 resposta
  1. 27 de ago. de 2016, 10:49
    Hi Pradeep,

     

    Please try the below

    AND(

    TEXT(PIcklist_Field__c) = "Yes",

    NOT(INCLUDES(Multipicklist_Field__c, "Strawberry"))

    )

     

    Please use the insert field button to select the field API Names of picklist and multi picklist fields.

     

    Also make sure the picklist values are exactly as listed as in the backend i.e.  no case difference, no spaces or any special characters
0/9000