0

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 Answers1

0

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

Satya V
  • 2,713
  • 1
  • 2
  • 7
  • Please consider accepting this solution if it had helped :) https://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work – Satya V Jan 28 '21 at 17:29