My current formula for my Gallery Items property is:
If(isAdmin,Sort(AllTickets,Created,Descending),Sort(Filter(AllTickets,Author.Email=MyProfile.Mail||Author.Claims=MyProfile.UserPrincipalName),Created,Descending))
I would like to add search functionality to filter all tickets:
Search(AllTickets, SearchBox.Text, "Title", "AssignedTo","Priority","TaskStatus")
However I am not sure where to put this at to allow both displaying all tickets and letting me search the gallery.
Any suggestions?