In power app, I have a screen which collects sharepoint data (Customers with an ID starting at 1 al the way up to 3600 today and counting), which is partially working.
But, it only collects the first 2000 records, despite the formula collecting the data in parts (see below).
I'm trying to figure out why the result is not picking Customers from 2000 up to the current 3600
The formula is embedded in the "onVisible" property :
//show loading overlay
Set(varLoading,true);
//data refresh Customer_Prod List
Concurrent(
ClearCollect(colCustomerPart1,Filter(Customer_Prod, ID > 1 && ID<= 1000)),
ClearCollect(colCustomerPart2,Filter(Customer_Prod, ID > 1000 && ID<= 2000)),
ClearCollect(colCustomerPart3,Filter(Customer_Prod, ID > 2000 && ID<= 3000)),
ClearCollect(colCustomerPart4,Filter(Customer_Prod, ID > 3000 && ID<= 4000))
);
ClearCollect(colCustomerALL, colCustomerPart1 , colCustomerPart2, colCustomerPart3, colCustomerPart4);
Clear(colCustomerPart1);
Clear(colCustomerPart2);
Clear(colCustomerPart3);
Clear(colCustomerPart4);
//hide Loading overlay
Set(varLoading,false)
Much obliged for finding a way to sort this out 🙂