cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Gochix
Memorable Member
Memorable Member

ForAll Patch more than 2000 rows??

Hi,

I have a collection that contains more than 6000 rows of data. I store all info using clearcollect.

Question: How to ForAll Patch exceeding 2000 rows? 

Thought if it's possible to read more than 2000 rows using this formula :

ClearCollect(StoresList,Filter(CatalogueList,PartID <= 2000),Filter(CatalogueList,PartID >2000 && PartID <=4000),Filter(CatalogueList,PartID >4000 && PartID <=6000),Filter(CatalogueList,PartID >6000 && PartID <=8000));

 Then maybe it's also possible to somehow patch over 2000 rows?

 

Thanks in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
BCLS776
Super User
Super User

The code I shared above will create a new entry in the database table each time it runs -- the Defaults(TestUpdate) argument takes care of that. If you need code that updates existing records or creates new ones, try this:

ForAll(UpdateList As aRecord,
    With({aLookup: LookUp(TestUpdate, Title = aRecord.Title),
        If(IsBlank(aLookup),
            Patch(TestUpdate, Defaults(TestUpdate),
            {
                Title: aRecord.Title,  
                Description: aRecord.Description, 
                Quantity: Value(aRecord.Quantity) 
            }
            ),
            Patch(TestUpdate, aLookup,
            {
                Quantity: Value(aRecord.Quantity) 
            } // If a record exists, update the quantity only
            )
        )
    )
);

Note, you will need to clear your table or remove the duplicate records first.

_________________________________________________________________________________________
Help the community help more users by choosing to "Accept as Solution" if this post met your needs. If you liked the post and want to show some appreciation, please give it a Thumbs Up.

View solution in original post

13 REPLIES 13
BCLS776
Super User
Super User

Yes, once you have everything together in an internal collection, you should be able to ForAll-Patch the works into another datasource. Each Patch() operates as a separate API call, so you are not subject to the 2000 row limit for data coming back into the app. That said, a large collection could put you over your API call limits for the day. A good practice would be to do lots of exception handling & error checking within that ForAll so you know things are going well.

 

Hope that helps,

Bryan

_________________________________________________________________________________________
Help the community help more users by choosing to "Accept as Solution" if this post met your needs. If you liked the post and want to show some appreciation, please give it a Thumbs Up.

Thanks for a reply.

Can i fetch data even if this is a excel table in a sharepoint?

Idea is that every morning i would need to update just quantities for our stock at work.

 

I have a sharepoint list .

Using clearcollect i'm getting over 6000 rows of data.

ClearCollect(
    StoresList2,
    Filter(
        Update,
        Value(PartID) <= 2000
    ),
    Filter(
        Update,
        Value(PartID) > 2000 && Value(PartID) <= 4000
    ),
    Filter(
        Update,
        Value(PartID) > 4000 && Value(PartID) <= 6000
    ),
    Filter(
        Update,
        Value(PartID) > 6000 && Value(PartID) <= 8000
    )
);

But whenever i try to fetch the same data with same columns from Excel table in sharepoint list then i can't do it. Thing is sharepoint list i have indexed column that helps to avoid data delegation. but excel table doesn't allow to do it at least how far i know.

So is there no option to get this out from excel table?

 

It would be easier if i just update excel file and then i can ForAll patch to my sharepoint list rather to delete/create new list every morning, refresh connections and so on..

 

Any ideas? 

Yes, you can use an Excel table as a data source, but they are SLOW. 

 

Three thoughts for you to chew on:

  • If this job-to-be-done requires no decisions or analysis from the other, would it work easier to set up a Power Automate flow to do the work in the background for you? Watching an app load 6000 rows from an Excel table sounds...frustating
  • You don't have to re-create the Excel table and data connection if you carefully copy & paste-special values into the existing table without wrecking the table definition
  • Do you have a column you can Filter() on to reduce your data query size. When I read "update quantities for our stock" I think, "only change the values that are different than the ones from yesterday". That implies some sort of Filter() operation to find values that are changed and then do updates based on that. Would that work in your situation?

Bryan

_________________________________________________________________________________________
Help the community help more users by choosing to "Accept as Solution" if this post met your needs. If you liked the post and want to show some appreciation, please give it a Thumbs Up.

  • I did try to use power automate flow for this. But i got only 256 rows updated out of 6000. I've searched more info about this and sadly there is some limits..
  • Do you have a column you can Filter() on to reduce your data query size. When I read "update quantities for our stock" I think, "only change the values that are different than the ones from yesterday". That implies some sort of Filter() operation to find values that are changed and then do updates based on that. Would that work in your situation? - Every day we do stock updates so we can add something in stock and also take out. So i would need whole list update just for quantity..

What i really would have enough is to be able to make a collection from excel table, 6000+ rows, then patch them. Or any other patch solution..

Doesn't matter if i would need to wait 10 minutes for an update.. This will be only once a day every morning so it's fine..

Gochix
Memorable Member
Memorable Member

Sorry for a double post. I did try to increase threshold a bit to test it out.

After half an hour flow still didn't finish the job..

 

Gochix_0-1632481351856.png

 

My only idea is to somehow Patch the Sharepoint List from excel table.. If only i could get excel table inside collection that is over 2000 rows then it would do the job, no matter how long it would take..

So far tried everything and just can't get more than 2000 rows inside this excel collection.. It works fine to get 6000 rows if collection is from Sharepoint List, but not working with Excel.. meh

You do not have to load the list into an internal collection to Patch() from one data source to another. In fact, that doubles the API calls and work the app must do. Connect both the Excel table and the Sharepoint list to your app and Patch() from one to the other.

 

That said, to work with this many rows and a slow Excel data source, this is best left to a Power Automate flow that can start at a scheduled time each day and ideally complete before anyone needs it in the morning. The flow can also move data directly from the Excel file to the Sharepoint list using an Apply to All block.

_________________________________________________________________________________________
Help the community help more users by choosing to "Accept as Solution" if this post met your needs. If you liked the post and want to show some appreciation, please give it a Thumbs Up.

@BCLS776 ,

Hi. So how far i've got is i made an excel table that will show me only changes that has been made. (formulas in excel helped to sort this out)

I've collected a collection in app. Removed all blanks if has any. And now trying to patch with existing list.

All the time this patch is duplicating the rows. I can't get my head around why it's not just updating row. If my title is the same, everything is the same. Just quantity changes but data anyway duplicates..

 

 

Gochix_1-1632511242286.png

 

 

ForAll(UpdateList,Patch(TestUpdate,{Title: Title,  Description: Description, Quantity: Value(Quantity) }));

 

 

 

Is this the right way of updating a list?

BCLS776
Super User
Super User

Try this instead - Patch() within ForAll() needs some help to handle scope:

ForAll(UpdateList As aRecord,
    Patch(TestUpdate, Defaults(TestUpdate),
    {
        Title: aRecord.Title,  
        Description: aRecord.Description, 
        Quantity: Value(aRecord.Quantity) 
    }
    )
);
_________________________________________________________________________________________
Help the community help more users by choosing to "Accept as Solution" if this post met your needs. If you liked the post and want to show some appreciation, please give it a Thumbs Up.

@BCLS776 ,

Thanks for try, but still gives me duplicates..

Gochix_0-1632513184284.png

 

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!   This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (tie)     Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (663)