Hi Experts,
I have an app that is a ticketing system, within this, you can view all tickets so I have the below code in a gallery and a search box at the top to filter the gallery
Filter(TicketingSystem,
ID = Value(SharePointSearch.Text) ||
StartsWith(Status, SharePointSearch.Text) ||
StartsWith(ID, SharePointSearch.Text) ||
StartsWith('Created By'.DisplayName, SharePointSearch.Text) ||
StartsWith(Technician, SharePointSearch.Text)
)
I want to add a button at the top so that users can easily click it and it will filter the gallery to only show entries with the status as "Open" but I still want the users to be able to use the search box at the top to filter if they want to, is this possible please?
Thanks in advance!
Dave