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 respostas
  1. 14 de fev. de 2020, 15:42

    Like this:

    AND(

    ISBLANK(QC_Other_Exception_Description__c),

    INCLUDES(QC_Exceptions__c,"Other")

    )

     

     
0/9000