Hello All,
I've recently stumbled upon an issue with an App I've done and the 500 (or 2000) row limit and then not displaying any new items.
A few days ago the 500 limit was hit, so as a temporary fix I pushed it up to 2000. This will also eventually be hit so I am on the clock to implement a work around ASAP. I am confused as to why this limit has been hit, because when creating the filtering I made sure to not get a Delegation Warning on the filter.
For info, the PowerApp is using a Sharepoint List as a Data Source.
My main 2 questions are:
1. Can I adapt the following code of the filter to overcome the 500/2000 Data Row Limit?
2. If that is not possible can I have it so it shows the NEWEST 500 records rather than the OLDEST? - I think I would prefer this fix as it would speed the app up, all records are required as part of an archive but having the newest created 500 shown on the front-end would be ideal.
Below is my filter. Many thanks in advance for the help!
With({_preFilter:
Filter([@DATA_SOURCE],
StartsWith('3Reg', regSearchBox.Text) || StartsWith('6Reg', regSearchBox.Text),
(IsBlank(satelliteCB.Selected.Value) || Satellite.Value = satelliteCB.Selected.Value)
)
},
SortByColumns(
Filter(_preFilter,
frame in aSelectionFilter.Result,
calculatedField in bSelectionFilter.Result
),
"Created",
If(SortDescending1, Ascending, Descending)
)
)