Can you prefill a dropdown based on another dropdown option?

Good morning

I have a question on if we can prefill a dropdown based on a seperate dropdown option being selected.

e.g. if I have 2 dropdowns (Consent withdrawn type) / (Consent method)

Is it possible to have Consent Method prefilled with :"all" IF Consent withdrawn type = "Option 1" only?

Thanks for your help in advance.

Jay

Parents
  • Hi  

    It is possible to accomplish such requirement thru Studio.

    You have to follow the steps described in this article in order to setup a formula like that:

    ifElse(equal($consent_withdraw_type,"Option 1"),"all",$consent_method)

    Something very important to mention: When configuring a calculated value, the target field becomes readonly, so you will need to edit the respective extended vardefs in order to uncheck the option "enforced".

    Kind regards

    André Lopes
    Lampada Global
    Skype: andre.lampada
Reply
  • Hi  

    It is possible to accomplish such requirement thru Studio.

    You have to follow the steps described in this article in order to setup a formula like that:

    ifElse(equal($consent_withdraw_type,"Option 1"),"all",$consent_method)

    Something very important to mention: When configuring a calculated value, the target field becomes readonly, so you will need to edit the respective extended vardefs in order to uncheck the option "enforced".

    Kind regards

    André Lopes
    Lampada Global
    Skype: andre.lampada
Children