Announcements
If( !IsBlank(Self.SearchText), Search( Choices([@'Test List'].'Product'), Self.SearchText, "Value" ), Blank() ) //Test List - Replace with your sharepoint list name //Product - Replace with your column name
Yes. In Power Apps, you can make a ComboBox show options only after the user starts typing by using the SearchText property in the Items formula.
SearchText
Set the Items property of the ComboBox:
If( IsBlank(Self.SearchText), [], Filter(YourDataSource, StartsWith(YourColumn, Self.SearchText)) )
How it works
SearchText returns what the user types in the ComboBox.
If it’s blank → return an empty table [], so no options appear.
[]
Once the user types → results are filtered and shown.
Microsoft explains the SearchText property and filtering behavior here: https://learn.microsoft.com/en-us/power-apps/maker/canvas-apps/controls/control-combo-box
You can also combine it with StartsWith() for delegable search as recommended by Microsoft: https://learn.microsoft.com/en-us/power-platform/power-fx/reference/function-startswith
StartsWith()
I hope this works for you!
With( { _allRecords: Filter( 'Circuits_territorials_03_2026', //Your SharePoint List - Please replace if it's wrong UP_Origen.Value = ComboBox_Origen1_1.Selected.Value //AGA Combobox name - Replace 'AGAComboBox' your combobox control name ) }, If( !IsBlank(Self.SearchText), Sort( Search( Distinct( Ungroup( _allRecords, Paraula_clau ), Value ), Self.SearchText, Value ), Value ), Blank() ) )
["Value"]
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.
Jump in, show your community spirit, and win prizes!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Valantis 424
WarrenBelz 355 Most Valuable Professional
11manish 290