Hello,
I have a SP list with more than 3000 items.
My gallery has a search box with the gallery set as below:
Filter(SOURCE, User().Email in 'Users', Year = 'Year Search Select_1'.Selected.Value, TextSearchBox1_1.Text in Description || TextSearchBox1_1.Text in TAGS || TextSearchBox1_1.Text in Atmosphere || TextSearchBox1_1.Text in 'HR' || TextSearchBox1_1.Text in 'Finance' || TextSearchBox1_1.Text in 'MGT ' || TextSearchBox1_1.Text in Location)
How can I pull in all data into a collection and then sort? I've tried adding the below to OnStart but still only able to pull first 2000 records.
Concurrent(ClearCollect(CollectionA,Filter('SOURCE',ID<2000)),ClearCollect(CollectionB,Filter('SOURCE',ID >=2000 And ID<4000)));ClearCollect(AllIncidentsSource,CollectionA,CollectionB)
thanks!