Hi Community!,
I have two tables: Users and Sheets.
Between these two tables I have a N:N relationship, as any number of users can be assigned to any sheets, and vice-versa.
I am trying to filter the sheets table for a gallery based on the current logged in user being assigned to the sheet.
My current logic is:
Filter(Sheets, varCurrentUser.'Primary Email' in Users.'Primary Email')
As expected, this does not work.
I am at a loss as to how I could filter this collection.
Any ideas?