This is probably a silly question, but how can I have my gallery display its list of items when the app starts? Previously it was doing so, but when I changed the Filter on my gallery items to use in rather than StartsWith, it stopped showing the gallery items when it started. Now a query has to be typed and then cleared for all the items to show. This is the Filter I'm using to allow users to search by name, practice, expertise, or sector:
Filter(Directory,StartsWith(FirstName,searchQuery) || searchQuery in Practice || searchQuery in Expertise || searchQuery in Sector || StartsWith(LastName,searchQuery))
Thank you for any help!