1. To have gallery with distinct ticket statuses use this for Galery.Item
Distinct(DataSource,status)
To show how many tickets have the specific status use this formula for one of the gallery items
CountRows(Filter(DataSource, status = ThisItem.Result))
Here is how something similar would look like for Airport codes:

Change the code of the arrow OnSelect property to:
Navigate(Screen2,None,{TktStatus:ThisItem.Result})On Screen2 add gallery and change Gallery2.Item to this:
Filter(DataSource,status=TktStatus)
And you will get something like this:
