Hi @Station1901 ,
Are the controls that show the customer's other options also in the gallery?
I'm assuming you're doing this, when the value of the variable is "Y", the visible property of the control in the gallery is true.
The cause of the problem is that controls are using the same variable.
The best thing to do is to add columns with values of true/false to the data source for each control Visible property in the gallery, and then, when you click the button, update the current values of those columns to true.
OnSelect:
Patch(TableName,ThisItem,{VisibleColumn1:true,VisibleColumn2:true})
And use ThisItem.VisibleColumn on the visible property of controls.
Best regards,
Rimmon