@marpisa
Hi there. Is all of your data stored in the same table? If yes, there is no need to create multiple submit buttons/forms. You can use a single screen and show/hide datacards when the user clicks a button to goto the next section. It will appear like there are multiple screens but there aren't. An advantage of doing things this way is your only have to submit the form once.
Put this code in the OnVisible property of your screen
Set(currentPage,1)
Then for every datacard you want showing on Page 1 you must put this code in the visible property. For any datacards showing on other screens use the appropriate page number
currentPage=1
Create a button to browse to the next page with the following properties. We will say for this example there are 3 screens.
Text: "Next Page"
OnSelect: Set(currentPage,Min(currentPage+1,3)
Visible: currentPage<>3
Create another button to browse to the previous page with the following properties.
Text: "Previous Page"
OnSelect: Set(currentPage,Max(currentPage-1,1)
Visible: currentPage<>1
Finally create a button to Submit the form with the following properties
Text: "Submit Form"
OnSelect: SubmitForm(your_form_name_here)
Let me know if you have questions.
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."