Skip to main content

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 respuestas
  1. 29 ene 2024, 07:54

    Hi ,

     

    AND(

    INCLUDES(OTHER_Features__c,"BODY"),

    ISBLANK(TEXT(BODYs__c))

    )

0/9000