Skip to main content
I am trying have a field become required for adding in text if the Multip Select value Other is picked. It keep getting an error message. Please help

 

AND(         ISBLANK(QC_Other_Exception_Description__c),         ISPICKVAL(QC_Exceptions__c,"Other") )
3 answers
  1. Feb 14, 2020, 3:42 PM

    Like this:

    AND(

    ISBLANK(QC_Other_Exception_Description__c),

    INCLUDES(QC_Exceptions__c,"Other")

    )

     

     
0/9000