Good afternoon everyone.
I currently have an app with a gallery that is linked to a SharePoint list. I have ordered the list in descending order so the most recent entries appear at the top of the gallery. I currently have a text input box which allows the users to search a number of columns. This is the formula I am using and it works great.
Search(Sort('SPList','Column1',Descending), Searchbox.Text,"Column2", "Column3", "Column4")
I would like to add an "Advanced search" capability so that users can filter using several dropdown options (based on status of the item i.e open, closed, pending) as well as the text input. I must also retain the sort function so only the most recent items appear and are searched.
I have figured out how to perform the advance search on it's own but I need it to work alongside the sort function too and this is where I am coming unstuck.
Any suggestions are greatly welcomed.
Thank you