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
3 risposte
Hii Boshra,
You can try this,
AND(INCLUDES(Connector_Options__c,'HR'),CONTAINS( HR_Name__c ,'Unknown'))