I have seen that it is possible to load more than 2000 records into your PowerApp using SQL server and SharePoint; I have tried to replicate this same logic to bring in data from PowerBIIntegration.Data but I have not been successful in doing so.
I am trying to split my data up into collections (a total of about 10,000 records) and then call on this collection to be displayed in a gallery.
The unique identifier in my data is a combination of ID and row_id. This is the code I currently have written:
ClearCollect(colAllData, Filter(PowerBIIntegration.Data, ID <= 2000), Filter(PowerBIIntegration.Data, ID <= 4000 And ID >= 2001), Filter(PowerBIIntegration.Data, ID <= 6000 And ID >= 4001), Filter(PowerBIIntegration.Data, ID <= 8000 And ID >= 6001), Filter(PowerBIIntegration.Data, ID <= 10000 And ID >= 8001), Filter(PowerBIIntegration.Data, ID <= 12000 And ID >= 10001));
I have tried using "ID && row_id <= 2000" but this did not work either. Any help or suggestions would be greatly appreciated!