I have a gallery that shows Counties for each State. The State is selected using a Radio Button, and it filters the counties for the selected State. This part works perfectly. The issue is that the data is in SharePoint, and the counties are ordered in alphabetical order, which is fine, except that there is a "All Counties" value that's always at the end. I don't want the user to scroll all the way down to be able to select the "All Counties" option. Instead, I would like to move this specific option to the very top. The counties are shown in a gallery with Wrap Count = 3.

Radio Button Data
Items = GroupBy(
Filter(
State_County,
RO = myRO
),
"State",
"GroupedState"
)
Gallery Data
//
Items = Filter(
State_County,
State = Radio2.Selected.State
)
//--------
Checkbox.Text = ThisItem.County_Name
Thanks in advanced for any help.