Hi @Anonymous ,
Do you want to patch the the attachments file from the Attachments control within your Edit form to your SP list?
If you want to patch the the attachments file from the Attachments control within your Edit form to your SP list individually using Patch function, I afraid that there is no way to achieve your needs in PowerApps currently.
As an alternative solution, you need to consider your Edit form data as a Whole, and type it within your Patch formula. I have made a test on my side, please take a try with the following workaround:
Add a Button within your Edit screen, set the OnSelect property to following:
Patch('20190325_case13', Defaults('20190325_case13'), EditForm1.Updates)
On your side, you should type:
Patch('YourSPList', Defaults('YourSPList'), EditForm1.Updates)
In addition, if you want to update attachments file of an existing SP List Item, please take a try with the following formula:
Patch('YourSPList', BrowseGallery1.Selected, EditForm1.Updates)
More details about the Patch function, please check the following article for more details:
Patch function
Actually, you could consider use Patch function to patch data into your SP list instead of SubmitForm function. On your side, please set the OnSelect property of the "Submit" button to following:
If(
EditForm1.Mode = FormMode.New,
Patch('YourSPList', Defaults('YourSPList'), EditForm1.Updates),
Patch('YourSPList', BrowseGallery1.Selected, EditForm1.Updates)
)
Best regards,