I have a very basic canvas app connected to sharepoint list. I am showing items in Gallery.
There is search box automatically created when connected to sharepoint. It is searching data in only one column "EmployeeName". Now I want to search by two columns (EmployeeName & EmployeeTitle) using single search box. How to achieve this?
My current formula: SortByColumns(Filter([@TestList], StartsWith(EmployeeName, TextSearchBox1.Text)), "ID", If(SortDescending1, Descending, Ascending))