Hi,
I have 2000+ records in my SP list. I cannot some records in my app.
What I have tried -
1) I changed the settings of data row limit to 2000.
2) OnStart of App -
Concurrent(
ClearCollect(col1, Filter(testme_1, ID >= 1 && ID <= 2000)),
ClearCollect(col2, Filter(testme_1, ID >= 2001 && ID <= 4000)),
ClearCollect(col3, Filter(testme_1, ID >= 4001 && ID <= 5000))
);
ClearCollect(MergedCollection, col1, col2, col3)
then in my browsegallery i have -
SortByColumns(Filter([@MergedCollection],
('Assigned to'.Email = User().Email And (Status = "In Progress" Or Status = "NOT STARTED"))
), "Title", If(SortDescending1, SortOrder.Descending, SortOrder.Ascending))
However I am still missing my records in my browsegallery. Anything I am doing wrong here?