I am modifying an out of the box search field which then filters the gallery. The data is imported by an SPO data connection (list).
In the gallery I have:
SortByColumns(Filter(ControlRoomContacts, StartsWith(Title, TextSearchBox1.Text)), "COMPANY", If(SortDescending1, Descending, Ascending))
So the StartsWith function then looks within the Title field but it only looks for a search that starts with. For example:
If someone searches for Library, it will only find something in the Title field that STARTS WITH library. What if I want it to search in the title field for something like Cafe Library instead?