user5148719
user5148719

Reputation:

Valid checkbox is checked in PowerApps

Happy Tuesday! What is the best approach to valid that checkbox is check before submitting the form in PowerApps.

enter image description here

Thank you in advance

Upvotes: 1

Views: 7205

Answers (2)

Aleena K Peter
Aleena K Peter

Reputation: 146

Yes,you can either set required value of the field to true and check Form1.Valid or if in this case (case where fields are very less),you can directly check the value of the field like chkMember.Value = true || chkPatient.Value =true and you can patch the data.

Upvotes: 1

user5148719
user5148719

Reputation:

I had to make both required field true on SharePoint List and PowerApp and use

If(!Form1.Valid,SubmitForm(Form1),Patch(Test,Defaults(Test),Form1.Updates)

Upvotes: 0

Related Questions