Skip to main content
Ceci Sørensen が「#Formulas」で質問

Hi all, is it possible to do this" I have a multi select picklist called OTHER_Features__c with a value called BODY when/if this is selected an error message should pop up and say "please select body organ". The organ field is a picklist value. Is this possible? #Formulas #Multi-picklist Field #Validation Rule

4 件の回答
  1. 2024年1月29日 7:54

    Hi ,

     

    AND(

    INCLUDES(OTHER_Features__c,"BODY"),

    ISBLANK(TEXT(BODYs__c))

    )

0/9000