Re: How to stay on the same form even after submitting the form in SharePoint List.
Hi,
You can make below changes -
On Item property of sharepointform1 you can add - If(varMode="New", LookUp(SPListName, ID = SharePointForm1.ID), <code that was there before in item property copy and paste it here>)
On select property of Submit button -
If(SharePointForm1.Mode=FormMode.New, Set(varMode,"New"), Set(varMode, "Else")); SubmitForm(SharePointForm1)
On Success property of SharePointForm1 you can remove ResetForm(Self) formula
I think by making above changes it should work