I have two canvas app list gallery which pulls from a SharePoint list of messages between project team and clients. the first filters the list depending on the current user like this:
Filter('Source', AssignedUser.Email = User().Email)
If the client replies I have set the app to create a new list item for further messages from the project team.
I'm attempting to get the list second gallery item to filter the assigned users column but only list the new reply list items.
Filter('Source List', AssignedUser.Email = User().Email || Not(IsBlank(ReplyID))
However this as expected brings back all items assigned to the user, regardless if it is a first response or a follow on response.
Any suggestions would be most helpfull.