Notifications
Announcements
Hello,I am wondering if I can set limit to a combobox?As I understand powerapps have 500 limit on the number of items that can be displayed. I'd like to set limit around 40 items as it would be a lot of work for user to scroll through 500 items.Is that doable? Thanks.
Hey @Anonymous to make limit of 40 items you need to follow the below steps:-
Thank You , I hope this will resolve your query
Hi @shivam38,I am aware of the data row limit, but won't that affect the galleries row, etc in my app? I just wanted to filter one of the combobox which are linked to a dataverse that have around 1000 items. I wanted to know if I could set in the items property to only show 40 items when scrolling. I allow search for the combobox to access more.
Filter(Vendors, 'Vendors (Views)'.'Active Vendors')
Thanks!
Hi @Anonymous ,
Since the number of data/records loaded into the app will be used everywhere within the app.
(For example, say 100 records gets loaded into the app, combobox will show 100)
If you still need to limit records displayed in combobox,
Use a custom combobox (which is a gallery) which uses pagination within. So you can go through 40 records per page.
I hope this helps.
Hi @Anonymous :
Please try this solution:1\Add a left icon and set it's OnSelect property to:
If(ThePage>=1,Set(ThePage,ThePage-1))
2\Add a right icon and set it's OnSelect property to:
Set(ThePage,ThePage+1)
3\Set the Gallery's items property to:
LastN(FirstN( Filter(Vendors, 'Vendors (Views)'.'Active Vendors'), (ThePage+1)*40), 40)
Best Regards,
Bof
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
In our never-ending quest to improve we are simplifying the forum hierarchy…
We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
WarrenBelz 717 Most Valuable Professional
Michael E. Gernaey 329 Super User 2025 Season 2
Power Platform 1919 268