Hello!
I have a Power Apps customized SP list form with 3 screens. I've got a main screen with a choice data card in a form on it. At the bottom, there is a button that navigates to one of two other screens based on the selected value in the choice data. On that next screen, there is a single line of text data card, a back button that works fine, and a submit button with the following in the On Select Property:
SubmitForm(SharePointForm1);
SubmitForm(SharePointForm2);
Notify("Form Submitted", Success);
ResetForm(SharePointForm1);
ResetForm(SharePointForm2);
Navigate(FormScreen1,ScreenTransition.Fade)
When I click the button though, it will save the title appropriately, however the data from the second form (SharePointForm2 in this case), will only write to the first line in the list and will overwrite that data.

Of course, I want the data to all be written to the same list item.
Any help?
Best,
Thomas