Skip to main content
Laura Hall perguntou em #Formulas
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 respostas
  1. 6 de dez. de 2016, 03:47
    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