Hi,
I am making a form in PowerApps that includes three radio buttons.
On selection, each radio button should show some extra fields. Multiple radio buttons can be selected at the same time.
So rather than opening up a new screen when a button is selected, I would like the fields to pop up on the same screen. If not, an alternative screen will pop up when one of the radio buttons is selected, but I think this will make it impossible to select multiple radio buttons.
Does anybody know how to overcome this issue?
Best regards,
AVH
Solved! Go to Solution.
Hi @AVH,
For making extra fields show, it could be achieved by setting the Visible property of the data card of the fields to:
If(Radio1.Selected.Value="1",true,false)
But for the the multiple radio selection part, I think this cannot be achieved so far. The only similar control you could use so far is Combo box control.
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/controls/control-combo-box
Regards,
Mona
In your form, you just need to set the Visible property of the relevant datacards to be true or false depending on the state of the radio button
Something like
If(Radio1.Selected.Value ="Show",true,false)
You can simplify this down to
Radio1.Selected.Value ="Show"
If its a simple binary choice too
I've done this previously with a SharePoint list as a data source where not all the columns were required depending on the type of data I was adding, its was an action list for projects where different types of action used different columns. The form added them all in when connected to the data source and I set some of them to be visible/invisible depending on the action type. A similar requirement to what you're doing I think. So long as the fields anrent mandatory it should work fine
regards
Andy
https://www.powerappssolution.com/
Hi @AVH,
For making extra fields show, it could be achieved by setting the Visible property of the data card of the fields to:
If(Radio1.Selected.Value="1",true,false)
But for the the multiple radio selection part, I think this cannot be achieved so far. The only similar control you could use so far is Combo box control.
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/controls/control-combo-box
Regards,
Mona
User | Count |
---|---|
239 | |
114 | |
94 | |
58 | |
32 |
User | Count |
---|---|
286 | |
133 | |
106 | |
63 | |
57 |