Having too many issues with multiple galleries synching up with a single Detail and Edit Screen so I am thinking of going another route and creating a Filter Button in my Full Gallery list that only shows a filtered view. I also want to be able to link to that filtered view or the full view from another screen with a clickable icon.
Current Setup
BrowseGallery1 has all items.
SortByColumns(Filter([@'Coverage'], StartsWith(Title, TextSearchBox1.Text) Or StartsWith('Assigned Rep',TextSearchBox1.Text)), "Title", If(SortDescending1, Descending, Ascending))
My current BrowseGallery2 was set up to show only those records where a rep has not been assigned (ie that column is blank):
SortByColumns(Filter([@'Coverage'], 'Assigned Rep'=Blank()), "Title", If(SortDescending1, Descending, Ascending))
Issue:
I created a button in Gallery 1 but not sure how to code it correctly to change the look of Gallery1 to only show the unassigned records (and still be able to search by Title and Assigned Rep). Also then having trouble figuring out how to then create two buttons on my home screen (one for all records and one for unassigned records) that goes to the correct Gallery1 view.
Thanks