Hi power app experts,
My datasource is sql server, and my table has text and int columns.
Lets look at 2 columns "Name" (text) and "ID" (int).
I have a gallery with these columns and I use a textinput field for searching capabilities.
I tried to write a search formula in gallery items as follows:
If( !IsBlank(TextInput),
Search(datasource, TextInput.Text, "Name", "ID"),
datasource)
It fails because the search function want to only search on text.
What can I do to combine searching for both datatypes.
Any help, workarounds will be appreciated
Thanks