Not sure if my question is worded correctly but I would like to get the combo box to search/filter matching the first letter I type with the first letter of the items in the combo box. For example, if I type "F", I want the combo box to be filtered to show 'Fish', 'Forks', 'Fountain' etc and not 'Fish', 'Forks', 'Fountain' plus 'Effort', 'Stuff', etc.. I just want the words that start with "F". Is there way to do this?
Thanks. This works with a little tweak. I needed to add in the column name.
Filter(DataSource, StartsWith(ColumnName, Self.SearchText))
I think you could achieve this using startswith
https://learn.microsoft.com/en-us/power-platform/power-fx/reference/function-startswith
Combine this with filter and it should give you what you need
Filter(data source, startswith(self.searchtext)) in the items property of your combo box
WarrenBelz
146,601
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,946
Most Valuable Professional