Skip to main content
Jane Black 님이 #Data Management에 질문했습니다
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개
  1. 2016년 9월 29일 오전 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