Hello, I hope everyone is doing well.
I created an inventory app for my organization to search by name and email to see what users use.
I created a collection using the code below ( Thanks Mr. WarrenBelz for helping ) but it only can load 4,000 records.
With(
{
wLow:
Sort(
AnaMlaak,
ID
),
wHigh:
Sort(
AnaMlaak,
ID,
SortOrder.Descending
)
},
ClearCollect(
colMyCollection,
wLow,
Filter(
wHigh,
!(ID in wLow.ID)
)
)
)
However, my question is whether there is a workaround to create more than 1 collection and merge them together in 1 for example :
FirstCollection can load 1 to 2000 records
SacondCollection can load from 2001 to 4000 records
ThirdCollection can load from 4001 to 6000 records … etc until 10 collections and merge them together on 1 collection ( AllColection )
the solution in Mr. WarrenBelz’s blog is more advanced because I have low knowledge of Powerpp.

Report
All responses (
Answers (