Detail List - Paging not working with collection over 2000 record limit #417
-
Hi All, Paging is working fine on large data sets, when grid item source is a datatable, but when i change it to a collection it's seems limited to the max 2000 record limit. Any step missing on my end? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
This is not a DetailList issue, but a Powerapps choice by design. As you can read on Microsoft Learn, ClearCollect is a non-delegable function and for this reason the gallery is returing only 2000 records (that is your data row limit). |
Beta Was this translation helpful? Give feedback.
-
Many thanks to everybody that answered my questions. Cheers!!! :) |
Beta Was this translation helpful? Give feedback.
In Power Apps, there's a limitation known as the "delegation warning," which restricts the amount of data that can be retrieved from data sources at a time to 2,000 records. This is designed to ensure performance isn't hindered in large databases. However, when you need to work with large datasets, this can be restrictive.
To your question, using pagination with a collection of more than 2,000 records requires a bit of strategic data handling due to this limit. You'l…