Greetings. I'm trying to create an application that displays a checklist that employees must complete when their shift begins. Because there is at least 20 different items to check, having a form that is one page will not be the most convienient way. So I need to break it up into 7-9 different screens. I have the following already created:
1. Database (in the form of a SharePoint list)
2. 11 Screens, (Home, 9 Edit Screens, 1 Success screen)
3. I am using the following formula in a button to navigate to the next screen
NewForm(Form1);Navigate(EditScreen2, ScreenTransition.None)
4. A submit button that will submit the form using the following formula:
SubmitForm(Form1);Navigate(Success,ScreenTransition.None)
Would I include the additional forms (Form1_2, etc) in the SubmitForm formula? Or just "Form1"?
Random Issues
The first issue I'm having is that after Form1_1, the remaing forms (Form1_3, Form1_4, etc) are not appearing. What would cause that?
Thank you all for your help.
Brendon