Hi
I have a powerapp connected to an Excel table (4k rows) and the Excel file is stored in onedrive for business. The table has three columns, Name, Code and ID(1-4000). Understand that PowerApp could only retrieve first 2000 rows of records from the Excel file, and I have seen some workarounds that use the Collect function, somehow I couldn't get it work.
Basically, I insert the following function at App start:
ClearCollect(Record1, Filter(Table1, ID<2000));ClearCollect(Record2, Filter(Table1, ID<4000 And ID=>2000));Collect(AllRecord,Record1, Record2)
However, when I view the collection items , it seems that any rows beyond ID 2000 was not collected. Anyone could help please.