I am currently dead in the water and have not been able to find a fix for my custom save button. Hoping someone can help.
I created a button on the form so that it would go to a thank you screen so they know that the changes saved.
It was working before, but recently stopped and I'm not sure what happened. It works when i save NEW entries, but not edited entries.
I've tried using the following for OnSelect
SubmitForm(FormNew)
SubmitForm(FormEdit)
In sharePointIntegration for OnSave i have the following
If(SharePointFormMode="CreateForm", SubmitForm(FormNew), If(SharePointFormMode="EditForm", SubmitForm(FormEdit)))
thanks!