Created an app from a sharepoint list and working with the default Gallery it provided. I am trying to change the default display providied while keeping the filter feature working correctly.
Syntax provided is:
SortByColumns(Filter('IT Support Log',StartsWith(Text,TextSearchBox1.Text)),"Title",If(SortDescending1,Descending,Ascending))
Image Powerapps1 shows it displays Alpha based on title.
I have altered the Syntax to:
SortByColumns('IT Support Log', "Request_x0020_received",If(SortDescending1, Ascending, Descending))
Image Powerapps2 shows the display I want but I lose the ability to Filter, I know its because I removed the Filter Function. How do I get the display I want for the gallery and make the filter section work also. Can provide more detail if needed.