Hi All
I have a SharePoint list with about 2500 items, which I need to get into my PowerApp.
So I made 2 collections :
ClearCollect(CDDIs1,Filter(SPList,ID < 1900) );
ClearCollect(CDDIs2,Filter(SPList,ID > 1899) );
ClearCollect(C_DDIs, CDDIs1,CDDIs2)
But it still shows Total of 2000 items in C_DDIs.
Unless I got it wrong, those 2 Filter functions should get all the items from the SP List?
Thanks