
Announcements
I am very new to PowerApps and coding in general, so this is probably a very simple fix. I put out two checkboxes and wanted to make it so that when one checkbox is selected, the other one can't be and vice versa. However, when both checkboxes are checked, they both disappear and become unclickable. How can I modify my formulas to ensure that each checkbox can be checked or unchecked independently without affecting the other's visibility and clickability?
Not using a gallery. just two simple checkboxes
This is the code I used for the checkboxes: DisplayMode: If(CheckboxCanvas1.Checked, DisplayMode.Disabled)
If(CheckboxCanvas1.Checked, DisplayMode.Disabled)
Thank You!