
Hi @Engineershane ,
Have you taken a try to split your data cards into multiple Edit forms?
Based on the issue that you mentioned, you could consider add multiple Edit forms in your app, then connect each Edit form to same SP List data source. Within each Edit form, enable different field data cards.
Note: You could add multiple screens in your app, in each screen, add a Edit form.
Then when you want to patch your multiple forms data back to your SP List, please consider take a try with the following formula:
Set the OnSave property of SharePointIntegration control to following:
If(
EditForm1.Mode = FormMode.New && EditForm2.Mode = FormMode.New && EditForm3.Mode = FormMode.New && ....,
Patch(
'Your SP List',
Defaults('Your SP List'),
EditForm1.Updates,
EditForm2.Updates,
EditForm3.Updates,
...
),
EditForm1.Mode = FormMode.Edit && EditForm2.Mode = FormMode.Edit && EditForm3.Mode = FormMode.Edit && ....,
Patch(
'Your SP List',
SharePointIntegration.Selected,
EditForm1.Updates,
EditForm2.Updates,
EditForm3.Updates,
...
)
)
Set the OnNew property of SharePointIntegration control to following:
NewForm(EditForm1);NewForm(EditForm2);NewForm(EditForm3);...
Set the OnEdit property of SharePointIntegration control to following:
EditForm(EditForm1);EditForm(EditForm2);EditForm(EditForm3);...
Please consider take a try with above solution, then check if the issue is solved.
Best regards,