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
SnowskierSnowskier 

Mutli Select Picklist Equals XXX and requires Date to be entered in field

Mutli Select Picklist Equals XXX and requires Date to be entered in field

 

AND(NOT(ISBLANK( Date_Termination_Notice_Served__c )),
CASE(Type_of_Process_Service__c , "Termination Notice Posted and Mailed"))

 

I am getting this error:

 

 Error: Field Type_of_Process_Service__c is a multi-select picklist field. Multi-select picklist fields are only supported in certain functions

Steve :-/Steve :-/

Give this a try

 

AND(
INCLUDES(Type_of_Process_Service__c , "Termination Notice Posted and Mailed"),
ISBLANK(Date_Termination_Notice_Served__c))

 

 

Convergys_ADConvergys_AD

Just to add to Stevemo's response, there should have been a hyperlink after the error message you copied, "Learn more" where it would take you to a help topic that explains the functions you can use for multi-select picklists, i.e. INCLUDES.

 

Good Luck.