I am using SharePoint Custom Forms. I have 2 forms on a screen that I need to submit to the same data source. I have used the Patch function and it works as far as submitting the forms together, but I am not able to Edit the current form. When I click the submit button after editing my form, it creates a brand-new form. Below is my code for OnSubmit.
Patch('Sharepoint Form',Defaults('Sharepoint Form'),Submitter_Info.Updates, IT_Form.Updates));
Here is my OnEdit in SharePointIntegration and also my Edit Button OnSelect:
EditForm(Submitter_Info); EditForm(IT_Form);
I am not using a Gallery. I want to make this form as simple as possible to navigate for our users. I have added an ID field to both forms. What am I missing?
