Hi all,
I've been reading some solutions from users with similar issues but for any reason they are not working on my side.
Here is the scenario.
I'm using Microsoft Teams and a List. This list was integrated with Power Apps + Customize Forms. This integration creates automatically the App with the SharePointIntegration and all fields in just 1 form and screen.
What I did was to duplicate the 1st screen into more 2 screens and then remove unwanted form fields.
So I have all fields but split into 3 different screens:
When I click on "+ Add new item" I fill all the fields from the 3 screens:
Then when I click on "Save" at the top only the data filled on the 1st screen is saved.
Then I changed the formula
OnSave in the
SharePointIntegration to:
SubmitForm(frm_Page1_WorkOrders);SubmitForm(frm_Page2_WorkOrders);SubmitForm(frm_Page3_WorkOrders)
Then when I click on "Save" at the top, all data filled was saved but in 3 line items and not on the same item:
How can I solve this?