Hi All,
I have a Gallery1 with a Checkbox1. I am able to select multiple checkboxes in this gallery then select an outside button (Button1) to do its functionality. I need to keep button(Button1) visible until the Checkbox1 is selected, then Button1 will appear.
Button visible property: If(Checkbox1.Value, true, false)
Issue: I can select multiple checkboxes and the button appears, but if I uncheck any of those boxes then the button disappears. How can I uncheck the boxes and keep the button appeared until the last checkbox is uncheck? Is this possible? Thank you