
Announcements
Hello community,
my ComboBox Search finds items that start with the string I'm typing but is not able to find elements within the strings.
In other words How can I obtain a ComboBox that filter the results like the asterisk in SQL?
Example:
given the items
"ABC-DEF"
"ABC-123"
"DEF-ABC"
"123-GHI"
I start to type "ABC"
Now I get:
"ABC-DEF"
"ABC-123"
I want to get:
"ABC-DEF"
"ABC-123"
"DEF-ABC"
Thank you in advance for your support
Hi @MrDeg ,
Please try this:
Set the Items of Combo Box:
Filter(DataSource,TextInput.Text in ColumnName)
Hope this helps you!
-------------------------------------------------------------------------------------------------------------------------------
If my answer solves your problem, please accept it as a solution to help more people stuck on the same problem find it.
Best regards,
Rimmon Li