I followed along with one of Shane's videos to create an app. I've been able to customize it to meet our needs, but I need to apply a more complex filter for one of the galleries and am hoping for a little help. This is the video I used: https://www.youtube.com/watch?v=xgznk4XlPCo
First, here's what everything looks like.
Below is the first screen where users add their information and the repeating table. The top portion patches to List1 and the repeating table patches to List2. They are connected through MasterID which is a field on List2 which is populated through Patch like this - MasterID: Form1.LastSubmit.ID.

On edit, The Master Gallery on the left is what is shown, an item is clicked on in Master Gallery, the ItemGallery's correlating items from List2 become visible. When you click on an item from the ItemGallery, a small edit form appears at the bottom for editing. Save and it all is written to the list. It all works great.

The issue is, the Master Gallery Items will quickly become very long causing users to have to scroll quite a bit to find their items that need editing. I want to filter these items so that when ItemGallery has the intials and date returned filled in, I no longer want to see the items in the master gallery. Below, since the highlighted items have been returned, I no longer want them populated in the Master Gallery. The only filter applied right now is on the ItemsGallery Items Property which is below:
Filter('List2', 'Master ID'= MasterGallery.Selected.ID)
