Hi @Woody ,
Could you please share more details about the formula within the Items property of the Gallery?
Do you want the first item within the Gallery to be selected?
If you want the first item within the Gallery to be selected when your Gallery populated with data, I have made a test on my side, please take a try with the following workaround:

Set the OnVisible property of the first screen of my app to following:
Clear(RecordsCollection);
ClearCollect(RecordsCollection, '20190211_case5')
On your side, you should set the OnVisible property of the screen which contains the Gallery control:
Clear(RecordsCollection);
ClearCollect(RecordsCollection, 'YourDataSource')
Set the Default property of the Gallery to following:
First(RecordsCollection)
Set the Items property of the Gallery to following:
SortByColumns(
Filter(RecordsCollection, StartsWith(Title, TextSearchBox1.Text)),
"Title", If(SortDescending1, Descending, Ascending)
)
On your side, you should type:
SortByColumns(
Filter(RecordsCollection, StartsWith(Title, TextSearchBox1.Text)), /* <-- Use RecordsCollection as data source within your Gallery instead of your original data source*/
"Title", If(SortDescending1, Descending, Ascending)
)
Please check the attached GIF screenshot for more details:
Best regards,