Hi @GeoMapper,
Do you want to sort and search for multi columns?
Could you please tell me that if you want to input strings related to City, Name, Title in a single search box or multi search boxes?
A single search box only supports one search column, if you want to search strings based on multi columns, I think you should add more search boxes
SortByColumns(
Filter(
Filter(
Filter(Table,
StartsWith(Title,TextInput1.Text)
),
StartsWith(Name,TextInput2.Text)
),
Startswith(City, TextInput3.Text)
),
"Title","Name","City",
If(SortDescending1, Descending, Ascending)
)
Of course, if you want the search strings from all the column, you should modify the above as below:
SortByColumns(
Filter(Table,
StartsWith(Title,TextInput1.Text) ||
StartsWith(Name,TextInput2.Text) ||
Startswith(City, TextInput3.Text)),
"Title","Name","City",
If(SortDescending1, Descending, Ascending)
)