I have an app where on the OnView property for a screen, a collection is created from a SharePoint list datasource.
ClearCollect(CompletedRequestsCollection, CompletedRequests)
I then try to work around the delegation issue within a gallery by sorting/filtering the collection that is created from OnView. However, even though there is no filtering on this datasource and there is no indication of non-delegation, the collection that is created OnView always maxes out with the first 2000 items in the list. Is this expected? Are there any workarounds?
Solved! Go to Solution.
HI @CLS720,
Collect() and ClearCollect() are not delegatable so they max out at 2000k items. However, once a collection is created, all powerapps functions can be delegated to the collection including Search() and all numeric functions. @martinav and I (well mostly him) came up with a way to rapidly collect a maximum of 4000 items from a Sharepoint list. As long as the list doesn't exceed 4000 items it will work and it works by collecting the first 2k items then sorting the list descending and collecting the bottom 2k items. Then merging the lists and then removing duplicates. It works this way.: In the OnVisible property of the screen:
Concurrent( ClearCollect(List1,Filter(SortByColumns(List,"ID",Ascending),ID>0)), ClearCollect(LIst2,Filter(SortByColumns(List,"ID",Descending),ID>0)) );
So two collections (List1 and List2) are created concurrently. This greatly increases the speed of the process.
Then the two two collections are merged, elimininating duplicates, into ListAll and the two collections, List1 and List2 are emptied. Just add this formula to follow the semicolon in the upper formula box.
ClearCollect(ListAll,List1,Filter(List2, Not(ID in List1.ID)));Clear(List1);Clear(List2)
ListAll now contains up to 4000 unique rows and can be used with all Powerapps functions without regard to delegation, and as an items property for galleries, datatables, and Comboboxes (but not Dropdowns as these are hardcode limited to a maximum number of items, no one wants to scroll through thousands of items in a dropdown anyway.). The execution speed of the formulas like Search() or Lookup() will astonish you.
HI @CLS720,
Collect() and ClearCollect() are not delegatable so they max out at 2000k items. However, once a collection is created, all powerapps functions can be delegated to the collection including Search() and all numeric functions. @martinav and I (well mostly him) came up with a way to rapidly collect a maximum of 4000 items from a Sharepoint list. As long as the list doesn't exceed 4000 items it will work and it works by collecting the first 2k items then sorting the list descending and collecting the bottom 2k items. Then merging the lists and then removing duplicates. It works this way.: In the OnVisible property of the screen:
Concurrent( ClearCollect(List1,Filter(SortByColumns(List,"ID",Ascending),ID>0)), ClearCollect(LIst2,Filter(SortByColumns(List,"ID",Descending),ID>0)) );
So two collections (List1 and List2) are created concurrently. This greatly increases the speed of the process.
Then the two two collections are merged, elimininating duplicates, into ListAll and the two collections, List1 and List2 are emptied. Just add this formula to follow the semicolon in the upper formula box.
ClearCollect(ListAll,List1,Filter(List2, Not(ID in List1.ID)));Clear(List1);Clear(List2)
ListAll now contains up to 4000 unique rows and can be used with all Powerapps functions without regard to delegation, and as an items property for galleries, datatables, and Comboboxes (but not Dropdowns as these are hardcode limited to a maximum number of items, no one wants to scroll through thousands of items in a dropdown anyway.). The execution speed of the formulas like Search() or Lookup() will astonish you.
Hey @Drrickryp, THanks for the tag! It was a combined effort, but I thought you came up with the first/last scenario... anyhwo, it is working very well. I have a list with 2,400 items, and it does indeed work well. Also, by using the ShowColumns() command, you can pull in only the columns you wish to have in the collection. If you dont need it, no sense in wasting time and memory space with data you dont need.
Here are my actual commands, which I put in the "OnStart" control for the app.
Concurrent( ClearCollect(MDL_List1,Filter(ShowColumns(SortByColumns(Master_Drawing_List,"ID",Ascending),"ID","MD_PartNumber","MD_Project","MD_LatestRevNumber","MD_DrawingRevDate","MD_EngrgRelDate","Title","MD_PDM_Link","MD_LinkToDrawing","MD_IsActive","MD_Data_Flagged"),ID>0)),
ClearCollect(MDL_List2,Filter(ShowColumns(SortByColumns(Master_Drawing_List,"ID",Descending),"ID","MD_PartNumber","MD_Project","MD_LatestRevNumber","MD_DrawingRevDate","MD_EngrgRelDate","Title","MD_PDM_Link","MD_LinkToDrawing","MD_IsActive","MD_Data_Flagged"),ID>0)) ); ClearCollect(MDL_All,MDL_List1,Filter(MDL_List2, Not(ID in MDL_List1.ID)));Clear(MDL_List1);Clear(MDL_List2)
So, everything is pulled one time. I do have a data refresh button that executes the exact same commands if the user thinks his data is stale. I also have a timer that runs, and reloads the data every 30min. If you dont do that, since data in your collection does not update automatically, you might want to recollect the data from sharepoint regularly. It will depend on your specific use. Also, note that I cleared the two collections used to pull in the two separate lists. To minimize memory usage.
This really did work well. Much better than I could have hoped! I did have another idea.. To perhaps get more items. I was wondering if can collect 2,000 items at a time using the ID of the sharepoint list. (if(ID>2000 AND ID<4000) etc etc. It might take using a Flow, though, because I think that using gt or lt functions are not delegable. However, flow allows you to to get items, and use ID. I think you can do get items using the get items filter. Then sending back to powerapps using the Response action. I have no idea how long it would take.
Thank you both! I applied this solution and it worked beautifully.
Sweet! Another happy customer!
Hey Guys, can you help me please?
I have a excel spreadsheet wich cointains 37k rows and i want to bring it to powerapps.
the data does not change, so i uploaded the excel via import via excel, and when i collect it brings me 15k rows.
but how can i separate in 15k15k and another one with 8k to bring all the datas?
Hold that thought... while you are waiting... what commands/objects are you using?
actually @timl figured out a way to do this with.
spread the excel table in 3 parts then collect all of them in powerapps.
worked 😉
thanks!
Seems to work @Drrickryp and @martinav , but more fun!
I have a SharePoint list with thousands of items, but I only want to pull items where the Start Date is greater than today. New items will come in over time. Is there a way to do this? I tried adding the Filter in, but with no change.
Concurrent(
ClearCollect(List1,Filter(SortByColumns('Events','Start Time'>Now(),"ID",Ascending),ID>0)),
ClearCollect(List2,Filter(SortByColumns('Events','Start Time'>Now(),"ID",Descending),ID>0))
);
ClearCollect(ListAll,List1,Filter(List2, Not(ID in List1.ID)));Clear(List1);Clear(List2)
I have a feeling I'm going to have to somehow create a Flow to keep a 2nd copy of the SharePoint List that is cleaned up. Any advice would be appreciated - thanks!
Filter first, then sort. The parenthesis work from the inside out.
Concurrent( ClearCollect(List1,SortByColumns(Filter('Events','Start Time'>Now()),"ID",Ascending),ID>0)), ClearCollect(List2,SortByColumns(Filter('Events','Start Time'>Now()),"ID",Descending),ID>0)) ); ClearCollect(ListAll,List1,Filter(List2, Not(ID in List1.ID)));Clear(List1);Clear(List2)
I didnt actually try this, I think the syntax is all ok. But, this may not work because the ">" will be a delegation issue itself. This may not work.
Getting 2,000 rows first, and then filtering would look like this... (I think)
Concurrent( ClearCollect(List1,Filter(SortByColumns('Events',"ID",Ascending),'Start Time'>Now()),ID>0)), ClearCollect(List2,Filter(SortByColumns('Events',"ID",Descending),'Start Time'>Now()),ID>0)) ); ClearCollect(ListAll,List1,Filter(List2, Not(ID in List1.ID)));Clear(List1);Clear(List2)
I'm not sure about your syntax for 'Start Time'. You also will need to be sure you use time zone correction to get your time adjusted to UTC().
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!
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
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.
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