My app consists of a gallery, where it is getting data from a SharePoint list. It used to work perfectly, until a few weeks (maybe months), it stopped filtering when you enter a name or case number in the Search bar. I had this running on a tablet for check in, where the user would tap 'Check In' and it patches to SharePoint. Now it is not filtering.
The way it used to work, is that as soon as I would type in a few letters, it would filter based on First Name, Last Name, or Case Number, using the formula below. When I run the app on a computer, it does sort as expected, but I now have to 'Click Out' of the search bar for it to Search. I cannot do this on a tablet, as it does not have a mouse cursor.
SortByColumns(
Filter(
'D17 - Check in',
Status.Value = "Not Present" &&
(StartsWith('First Name', Search.Value) ||
StartsWith('Last Name', Search.Value) ||
StartsWith(Title, Search.Value) ||
IsBlank(Search.Value))
),
"Name",
SortOrder.Ascending
)
Not sure what has changed, but any suggestions would be greatly appreciated.