Skip to main content
Vipin Kumar (EdCast) ha fatto una domanda in #Sales Cloud

Hi everyone, 

I have a text field, HR Name, with a default value "Unknown." This field needs to be updated if 'HR' is selected on a multi-picklist field. This is the validation rule I put in place but it isn't working: 

 

AND ( INCLUDES(  Connector_Options__c, 'HR'), NOT(CONTAINS( HR_Name__c , 'Unknown')) )

 

Please let me know where I may have gone wrong with this. 

 Thanks, 

 

Boshra 

 

#Formulas

3 risposte
  1. 23 set 2021, 13:09

    Hii Boshra,

     

    You can try this,

     

    AND(INCLUDES(Connector_Options__c,'HR'),CONTAINS( HR_Name__c ,'Unknown'))
0/9000