Skip to main content
I need to write a validation rule for if other is selected on a multi select picklist then it will be directed to a text field.

 
2 answers
  1. Dec 6, 2016, 3:47 AM
    Hi Laura,

    To check the value in a multi-select picklist, you need to use the INCLUDES() function like this.

     

    AND(

    INCLUDES(Multiselectpicklist__c,"Other"),

    ISBLANK(Textfield__c)

    )

    Use the insert field option to use the right API names of the fields.

    Kindly mark it as an answer if that works.
0/9000