Submitting a form in Power Apps is quick once your form is connected and ready. Here’s how to do it step by step.
1. On the left-hand panel, choose Insert to add a new control to your screen.
2. From the Insert menu, pick Button and place it anywhere on the form screen.
3. Select the button, then rename its text to the command you want users to see, such as Submit.
4. Go to the formula bar at the top of the screen, open the OnSelect property, and enter: If(Form2.Valid, SubmitForm(Form2), Notify("Form not valid", NotificationType.Error))
5. On the top-right side, use the Play or Preview icon to test the form and try submitting it.
6. If the form is valid, it will submit successfully and your data will be saved.Once it submits without errors, you’re all set and your form is working properly and ready to use.

