Preface: I'm pretty new to PowerApps. I have a gallery that is linked to a SharePoint List. I want to be able to search across all fields with one search box. I can get it working when searching for 1 field but when I try to modify it to search across multiple fields, it breaks.
Details:
SP Online List Name: Data Stewards
Fields: Area, Steward Name, Type of Steward
Working function when searching across 1 field: SortByColumns(Filter([@'Data Stewards'], StartsWith(Title, TextSearchBox1.Text)), "Title", If(SortDescending1, Descending, Ascending))
What modifications need to be made to the above function to be able to use 1 search box and search across all 3 fields?