@DCNehs
Organizing your DataCards under multiple tabs is great idea! You can do this on 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. Another 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(currentTab,"Information")
Then for every DataCard you want showing on the Information tab you must put this code in the Visible property.
currentTab="Information"
For any DataCards showing on other screens use the appropriate page tab name
currentTab="Status"
The tab functionality should be controlled via buttons. You should create 2 buttons: one for the Information tab and another for the Status tab. Put this code in the following properties of the Information button. Do the same for the Status button but change the value of currentTab.
Text: "Information"
OnSelect: Set(currentTab,"Information")
Now stop to test whether the buttons work. Clicking on each tab should show/hide DataCards appropriately.
Finally, you need another button to Submit the form. Put the button wherever you like and include 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."