Field appear based on Multiselect

Hi,


Is there a way to have a field appear based on value(s) selected in a multiselect field?

For example, I have multiselect "field 1" that has selections A,B,C,D

I want field 2 to appear if B is selected in field 1

I want field 3 to appear if C is selected in field 1

I want field 2 and 3 to appear if both B and C are selected

Thank you,

Andrew

Parents
  • Hello  , 

    I've created three fields to test in Sugar 12.

    1 - Multiselect using the account_type_dom dropdown
    2 - Text Field show_when_customer_c with the dependent formula   

    isInList("Customer",createList($testmultiselect_c))

    3 - Text Field show_when_analyst_c with the dependent formula

    isInList("Analyst",createList($testmultiselect_c))

    From my tests it does seem to have the outcome that you described.

     
     
Reply
  • Hello  , 

    I've created three fields to test in Sugar 12.

    1 - Multiselect using the account_type_dom dropdown
    2 - Text Field show_when_customer_c with the dependent formula   

    isInList("Customer",createList($testmultiselect_c))

    3 - Text Field show_when_analyst_c with the dependent formula

    isInList("Analyst",createList($testmultiselect_c))

    From my tests it does seem to have the outcome that you described.

     
     
Children