Skip to main content
I created a picklist within the Referrals tab with sites A, B,C and "Other" as the 4 options. If "Other" is selected, how do I have a text box open up to allow the entering of the address for that "other" site to be added? How do I hide that address text box if sites A-C are chosen from the picklist. Thanks so much in advance!
10 respostas
  1. 6 de ago. de 2019, 16:56
    And Address__c is the API name of the address field?  Can you try creating 2 formula check box fields - 1 for 

     

    ISPICKVAL(Shelter__c, "Other") 

     

    and 1 for 

     

    ISBLANK(Address__c)

     

    and make sure both of those populaye to true on yuor record. 
0/9000