AND( ISBLANK(QC_Other_Exception_Description__c), ISPICKVAL(QC_Exceptions__c,"Other") )
3 respostas
Like this:
AND(
ISBLANK(QC_Other_Exception_Description__c),
INCLUDES(QC_Exceptions__c,"Other")
)
AND( ISBLANK(QC_Other_Exception_Description__c), ISPICKVAL(QC_Exceptions__c,"Other") )
Like this:
AND(
ISBLANK(QC_Other_Exception_Description__c),
INCLUDES(QC_Exceptions__c,"Other")
)