I have a gallery that shows the count of my items in a sharepoint list, based off of a radio button selection. However, it is only able to sort based off of employee names. I want to have the highest counts at the top. Is there a way to get that data from the count rows pulled into a table that I can sort? I have been trying the AddColumns function but am not familiar with it.

Here is the Gallery Code -
Sort(GroupBy(Filter(AisleQualityCollection,StartsWith('Slot Number',Radio1.Selected.Title)),Title,Employee),Title,SortOrder.Ascending)
Here is the Count formula -
CountRows(Filter(AisleQualityCollection,Title=ThisItem.Title,Left('Slot Number',1)= Radio1.Selected.Title,'Reviewed?'="Yes"&Title<>"A1 -- Needs Researched"))
Thanks in advance!