PowerApps Portal - Form with checkboxes + Submit

531 Views Asked by At

I wanted to make a form that would have multiple sentences with one checkbox each. When all of them are accepted (ticked) i wanted to have a submit button to become enable (previously disabled).

Is it possible? How can i do it?

1

There are 1 best solutions below

1
On

You could try something like below :

If(Checkbox3.Value && Checkbox2.Value && Checkbox1.Value,DisplayMode.Edit,Disabled)

enter image description here

When everything is checked :

enter image description here

Code explanation :

It does an & - And Operation for all the checkbox values and if all are true (Checked), then the button displaymode will Edit else will be in disabled state.

enter image description here