Skip to main content
Dawn Bublitz (Flagstar Bank) 님이 #Data Management에 질문했습니다
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개
  1. 2020년 2월 14일 오후 3:42

    Like this:

    AND(

    ISBLANK(QC_Other_Exception_Description__c),

    INCLUDES(QC_Exceptions__c,"Other")

    )

     

     
0/9000