Hi @Anonymous ,
Do you want to pull 10,000 items from your SP List into your app?
Do you want to display 10,000 items within a Dropdown control?
Currenty, within PowerApps, there is a limit with Dropdown control. The Dropdown control could only show a maximum of 500 items. If you want to display more than 500 items within the Dropdown control, I afraid that there is no way to achieve your needs.
More details about the limits of Dropdown control, please check the following article:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/controls/control-drop-down#description
If you want to load 10,000 items from your SP list data source into your app once time, I afraid that there is no way to achieve your needs in PowerApps.
If your formula faced a Delegation issue, you could only process 2000 records (maximum value) locally within your app at most once time.
If you want to load 10,000 items from your SP List data source into your app, as an alternative solution, you could load items in bulk within your app. Please check and see if the solution mentioned within following thread would help in your scenario:
https://powerusers.microsoft.com/t5/General-Discussion/Pulling-in-large-ish-SQL-tables/td-p/243777
On your side, please consider take a try with the following workaround:
Set the OnStart property of the App control to following:
Concurrent(
ClearCollect(col1, Filter('YourSPList', ID >= 1 && ID <= 2000)),
ClearCollect(col2, Filter('YourSPList', ID >= 2001 && ID <= 4000)),
ClearCollect(col3, Filter('YourSPList', ID >= 4001 && ID <= 6000)),
ClearCollect(col4, Filter('YourSPList', ID >= 6001 && ID <= 8000)),
ClearCollect(col5, Filter('YourSPList', ID >= 8001 && ID <= 10000))
);
ClearCollect(colCombined, col1, col2, col3, col4, col5)
when you load your app, above formula would be executed, and then 10,000 items would be populated within the colCombined collection.
After that, within your app, you could do some filter condition on the colCombined collection. You could consider add a Data Table control within your app, then set the Items property to following:
Filter(
colCombined,
"filter condition"
)
Please take a try with above solution, check if the issue is solved.
Best regards,