hi guys,
I created a powerapp that links to a sharepiont list. I have 2 questions regarding the browsegallery window.
1. I want to create a filter that searches on title AND a status value
The first part worked automatically (search on item Title):
SortByColumns(Filter('FILENAME', StartsWith(Title, TextSearchBox1.Text)), "Title", If(SortDescending1, Descending, Ascending))
The second one works on its own, but I don't know how to have the both active:
Filter('FILENAME', Status.Value= "In Progress" || Status.Value = "Funnel") )
2. Is there a way to make the search more forgiving? Eg show if even a part of the word is present in the title? Now it seems to be expecting a perfect match to the item title?
Thanks!