Hi everyone,
I'm building ticketing applications for my company. And i'm facing an issue with one of these application, wich is gonna arrive to the other one too.
Power Apps limits the number of entry by 2000. I've tried to avoid this limit by creating multiple collection and regroup them in a single one
Concurrent(
ClearCollect(CollectionA,Filter('Production request to Engineering',ID<2000)),
ClearCollect(CollectionB,Filter('Production request to Engineering',ID>=2000 And ID<4000)),
ClearCollect(CollectionC,Filter('Production request to Engineering',ID>=4000 And ID<6000)),
ClearCollect(CollectionD,Filter('Production request to Engineering',ID>=6000 And ID<8000)),
ClearCollect(CollectionE,Filter('Production request to Engineering',ID>=8000 And ID<10000)),
ClearCollect(CollectionF,Filter('Production request to Engineering',ID>=10000 And ID<12000)),
ClearCollect(CollectionG,Filter('Production request to Engineering',ID>=12000 And ID<14000)),
ClearCollect(CollectionH,Filter('Production request to Engineering',ID>=14000 And ID<16000)),
ClearCollect(CollectionI,Filter('Production request to Engineering',ID>=16000 And ID<18000)));
ClearCollect(SourceTemp,CollectionA,CollectionB,CollectionC,CollectionD,CollectionE,CollectionF,CollectionG,CollectionH,CollectionI)
But this doesn't work, i only have the 2000 first items displaying in my gallery
I've tried to delete all the filters i've made on my gallery but i'm still facing the problem.
Anyone has an idea too solve this?
Thanks a lot for your help,
Kevin
Solved! Go to Solution.
Hi @KevinLG ,
It won't because ID field is only Delegable for the Equals = operator , not for > or <.
I have a blog on Delegation and in this section describes the process for a big collection. A more advanced version is here, but both involve a separate "shadow" ID field that needs to be added to every record in the list.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @KevinLG ,
It won't because ID field is only Delegable for the Equals = operator , not for > or <.
I have a blog on Delegation and in this section describes the process for a big collection. A more advanced version is here, but both involve a separate "shadow" ID field that needs to be added to every record in the list.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @KevinLG ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @WarrenBelz Yes, it did work, thanks a lot for your help and sorry for this late answer.
Have a nice day