Been struggling with what i think is a simple issue.....
i have a form that i want to Validate all fields, Submit the form, then navigate to another screen for confirmation. All the fields are required. Soooooo
If i put SubmitForm(SharePointForm1), i can see what fields need to be filled in that were left out. WORKS. So i create a second screen for confirmation. I changed the code to:
If(SharePointForm1.Valid, SubmitForm(SharePointForm1);Navigate(Screen1,Fade))
it submits the form (when all fields are filled), but does not navigate to Screen1. and just goes back to the SharePoint list. Also, when testing, i purposely didnt fill in a field or two to see if the error messages would still work (show errors of missing info) and it does not work anymore.(show the missing data error like when i had with SubmitForm(SharePointForm1).
Not sure why the errors stop showing and not sure why after successful sumit, it refuses to navigate to the Confirmation Screen. Any ideas?