Hi
I am building a Canvas App in Power Apps connected to an Excel/OneDrive data source. I have a gallery/table with a search input field and I am trying to filter records by Program and School columns when the user types in the search box.
I tried the following formula on the Items property of my Table:
Filter('staff leave',
SearchInput3.Text in Program ||
SearchInput3.Text in School
)
I also tried:
Search('staff leave', SearchInput3.Text, "Program", "School", "Title")
The formula shows an error when filtering the records when I type in the search box. The columns I want to search: Program and School.
What is the correct formula to search/filter across multiple text columns in an Excel-connected Power Apps
Any help would be greatly appreciated
Thank you