Hey all,
I am looking to make a Tablet view of the ticket system that I am currently working on at the moment.
As you can see with the image, I have buttons and I have a gallery below the buttons. I have two goals to be accomplished with this.
- What I am trying to do is have a gallery or buttons, which ever is easier, to display the status of the tickets. Using the Gallery, do I use:
distinct(filter(datasource, status))
The buttons are an easy fix since you can just use UpdateCOntext and use a global variable, but they dont look pleasing to the eye vs the gallery.
- The other thing I am trying to get to work is with this selection of the status, in another gallery, I will show the tickets with said selected status. EX I select "in progress tickets", all the in progress tickes will show and vice versa. TicketView is the variable that sets the filter on the gallery.
Filter(Tickets_1,If(TicketView = "Open", show all open tickets, If(TicketView = "In Progress", show all in progress tickets, If(...........))))
Any help would be appriciated. Thank you in advance!