
Hi
I hope someone can help
I have a powerapp designed to update an existing sharepoint task list, however the formula I have put in for my submit button doesnt seem to work.
The button should, if it worked correctly: submit the details to the task list; refresh the form; send the user to another page which gives a thank you message.
It does send the user to the other page but the form is not translated to the task list or cleared after its been submitted
SubmitForm(Form1_1);NewForm(Form1);Navigate('Request Number Generation', ScreenTransition.Fade )
Is there something I am doing wrong?
Thanks for your help
Matt
Hi @Matt22365
Leave just SubmitForm(Form1_1) in the SubmitForm button. Put
NewForm(Form1);Navigate('Request Number Generation', ScreenTransition.Fade )
in the OnSuccess property of the form. You don't want to execute these commands until the data in the form is successfully submitted.