I have a 6 page form in Power Apps with an Attachment field in the first page and I need the Power Apps form to update the SharePoint list as provided in your youtube video(
but I kept getting Issue below when I submit the form, all the fields in the form gets updated the SharePoint list but the attachment never get attached to the SharePoint list.
see below the formular used:
Patch(
'Incident Investigation-Working copy',
Defaults('Incident Investigation-Working copy'),
Form1_5.Updates,
Form1_4.Updates,
Form1_2.Updates,
Form1_6.Updates,
Form1_7.Updates,
Form1_8.Updates
);
ResetForm(Form1_5);
ResetForm(Form1_4);
ResetForm(Form1_2);
ResetForm(Form1_6);
ResetForm(Form1_7);
ResetForm(Form1_8);
Notify(
"data submitted",
NotificationType.Success
);
Navigate(General_infor)
Where the button 6 is the submit button on Form1_8.Updates
Attachement is located on the Form1_5.Updates,
Please I need your help to point me in the right direction.
Thanks
Regards,
David