I have a radio button control on my app but I want this text label to show when nothing is selected on the radio button. Then have the text go away when someone makes a selection.
Right now I have the below in my OnSelect field of the radio control:
If(Radio1.Selected.Value=“Fifth Floor”,”Sixth Floor”,”Seventh Floor”, “Tenth Floor”, Set(Var_Visible,true),Set(Var_Visible,False))
This is what I have in the Visible field of the text:
Var_Visible
Now my text doesn’t show at all whether something is selected in the radio control or not.
Please Help!