Hi,
I'm beginner and I'm trying make my own first App. I managed to edit and save data, next step is to search and filter.
And I have a problem with use Search and Filter function together. I'm base on PowerApps Multiple Filters on Gallery (youtube.com) tutorial, I'm trying to do something like in 6:41 .
When I use both separately it works great, but I can't use them together, no matter what order I enter, I always get an empty gallery, and no errors.
This works great separately:
Search(Table1,ProgramFilter.Selected.Program,Program)
Filter(Table1,Status<>"x")
But this:
Search(Filter(Table1,Status<>"x"),ProgramFilter.Selected.Program,Program)
and that:
Filter(Search(Table1,ProgramFilter.Selected.Program,Program),Status<>"x")
doesn't.
Any ideas what I'm doing wrong?