Good day,
I have created a multi-page power app connected to my data source (Request Form Test List on Microsoft Lists). The three forms I have are 'Requestor Info', 'Sample Info' and 'Analysis Info'. All forms are set to FormMode.new and are connected to the data source 'Request Form Test List'. I have the Item sections set to Defaults('Request Form Test List').
I have prepared a "Submit" button using the following code:
Patch('Request Form Test List',
Defaults('Request Form Test List'),
'Requestor Info'.Updates,'Sample Info'.Updates,'Analysis Info'.Updates);
NewForm('Requestor Info');
NewForm('Sample Info');
NewForm('Analysis Info');
Notify("Request Submitted",NotificationType.Success);
Navigate(SubmissionSuccess)
When I use the form for the first time, it submits to the connected list source perfectly. However, any subsequent entries to the form (after opening a new session, refreshing current session, etc.) do not successfully add entries to the list. The app still gives the success screen though after submission. Furthermore, if I delete the single generated entry on the source list, the form will submit successfully once again and then fail to afterward. I confirmed there are no filters on my list that would hide the other entries as well.
I am hoping that someone can guide me in the direction of where my error may lay, I can provide any addition information needed too, of course.