Skip to main content
Hi Everyone,

 

I would like to add a text field nominally called 'notes' and link it to a pick list value so that if that value is selected the 'notes' field must be completed. Can anyone tell me the best way to do this?

 

Thanks

 

Jane
8 respostas
  1. 29 de set. de 2016, 10:58
    Jane,

     

    Please create a validation rule here.

    AND(

    ISPICKVAL(field_api_name__c, "Picklist text"),

    ISBLANK(Your_field_to_be_filled_in__c)

    )

     

    just replace the field names with your api names. Hope this helps!
0/9000