In Power Apps, the ComboBox uses the Search
function to allow users to type and filter results. However, the Search
function is not delegable to certain data sources, such as SharePoint. This means Power Apps can only retrieve the first 500 records from SharePoint by default. (You can increase this limit to 2,000 in the app settings.)
ClearCollect
function to load the data source into a collection when the app starts.Items
property of the ComboBox. This way, Power Apps operates on the local collection instead of the data source.Although this approach doesn’t remove the 500/2,000 record limit from SharePoint, it eliminates the delegation warning because the ComboBox no longer directly interacts with the data source.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.