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