Skip to main content
Mandy Henke (.) a posé une question dans #Sales Cloud

Hello, I'm working with a non-profit and we plan to have a picklist field with the following clinician availability statuses: Available, Not available currently,  Inactive- Do not use again, Inactive- Open to seeing patients in the future. If "Inactive- Do not use again" is selected we want to force the user to provide an explanation for why that therapist is not to be used again. How do I go about setting this up?! Validation rules? I'm stuck. Thanks in advance!

 

#Sales Cloud  #Nonprofit

3 réponses
  1. Forum Ambassador Vuk Stajic (MVRK Inc.)
    12 août 2021, 17:50

    Absolutely - validation rules.

     

    Something like this:

     

    AND(

    ISPICKVAL(Status, "Inactive - Do not use again"),

    ISBLANK(explanation field here)

    )

     

    Make sure you use the insert field function to put in the status and explanation fields.

0/9000