Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Radio button to disable a container when checked rather than enable it

chickenlicken
8 - Asteroid

Hi there,

I'm trying to build an app where the user has four choices of output from a workflow

 

I wanted to use radio buttons for this, where the user checks one radio button, and this enables the relevant container to produce the output.

 

I can only see how radio buttons disable one container at a time - I can't see how to do the reverse, and enable one but disable the others.

 

Is this possible?

Thanks!

2 REPLIES 2
Thableaus
17 - Castor
17 - Castor

Hi @chickenlicken 

 

Use "Update with Formula" option in Action Tool and target the "Disabled" part of Container configuration.

 

You can force it to false with an IF condition.

 

pic.PNG

 

IF [#1] THEN "False"
ELSE "True" ENDIF

 

You can extend that to other radio buttons as incoming streams and apply according to the logic you need. It's up to you how you deal with it.


Cheers,

chickenlicken
8 - Asteroid

Amazing, this worked perfectly.  Thanks so much for the quick response. 

Labels