I have a Gallery with a bunch of data from a SharePoint list.
I also have a Search box and a Toggle to filter the information in that list.
I have a command for the search box
Filter('List Name',StartsWith(Title,'Search Box'.Text))
and a command for the toggle
If(Toggle.Value = true, Filter('List Name',Status.Value = "Pending"))
They work fine on their own, but I can't figure out how to have them work together? Any help 🙂