On a Save form button I have the following OnSelect:
SubmitForm(EphysExpEdit); If (patchLookupEphys = true, Patch('Exp Slice Ephys 2', Last('Exp Slice Ephys 2'), {Animal_rel:{'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference", Id:Gallery_Animals.Selected.ID, Value:Gallery_Animals.Selected.Title }} )); UpdateContext({patchLookupEphys: false})A couple of times recently I've had an issue where the SubmitForm function fails for some unknown reason, and then the rest of the arguments are executed. Of course this causes a problem because the following arguments rely on the SubmitForm function working as they modify the Last() record. (I have to do this annoyingly hacky Patch() stuff because PowerApps doesnt handle linked SharePoint lists well).
What would be the best way of handling potential errors from SubmitForm, so the rest of the arguments only are executed if the submission works?
Thanks