darshan bagrecha
darshan bagrecha

Reputation: 47

Make field visible depended on other field - Powerapps

I have a radio button . If my radio button is Yes then it should show me text box

Upvotes: 0

Views: 1324

Answers (1)

carlosfigueira
carlosfigueira

Reputation: 87228

To set the visibility of a control, you can look at the Visible property. If the name of your radio button control is Radio1, for example, then you can set the Visible property of the text box to

Radio1.Selected.Value = "Yes"

Upvotes: 0

Related Questions