web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Large amount of Dataca...
Power Apps
Unanswered

Large amount of Datacards (Slow) Looking for an alternative solution

(0) ShareShare
ReportReport
Posted on by 2
Hi,

i was asked to build a custom form app with sharepoint as the database. My issue is that their is over 150 datacards and the app is unusable with delays. My plan is to remove all the lookup & choice column datacards and replace them with "text" (prefilled items etc) and a few other tricks to make usable.

But how do you guys go about building large forms with loads of custom datacards?

This form im building is replicating a excel file with say 40rows and 8 columns each with a different value (its a invoice spreadsheet) so i can reproduce this with powerbi and i can extrapolate every "cell" in powerbi etc and ill also have an export to pdf for analog signing (booo, and ewww paper, but thats what the client wants)

Really im looking for advice on how this is done? How did you do it?

I was thinking of replicating xero with the add row in the invoice section..

I have ways to do this and have been using this system since the beginning. however i wish to propose the idea to the client and would love some more ideas and options that may suit them and with powerbi as the selling point for the boss. Ive done this sort of thing before but with lots more data coming from a myriad of sources and not all of it coming from a single app..
Categories:
I have the same question (0)
  • v-xida-msft Profile Picture
    Microsoft Employee on at

    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,

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 529 Most Valuable Professional

#2
Haque Profile Picture

Haque 230

#3
Kalathiya Profile Picture

Kalathiya 217 Super User 2026 Season 1

Last 30 days Overall leaderboard