Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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?

question from:https://stackoverflow.com/questions/65935459/powerapps-portal-form-with-checkboxes-submit

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
995 views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...