Hello,
I am new on Powerapps and trying very basic thing but it doesn't work. I have two galleries and two radio buttons. I want if first value of radio selected then gallery1 is visible. If second value of radio selected then gallery2 visible.
I tried this code block in onchange of the radio:
If(
Radio2.Selected.Value = "Parameter Value",
Gallery_ParameterGroup.Visible = false;
ParameterGroupLabels.Visible = false;
Gallery_ParameterValue.Visible = true;
ParameterValueLabels.Visible = true,
Gallery_ParameterGroup.Visible = true;
ParameterGroupLabels.Visible = true;
Gallery_ParameterValue.Visible = false;
ParameterValueLabels.Visible = false
)
When I change the value of radio, nothing has changed. Can anybody help?