I am trying to filter a SharePoint data source column of items using both another column in the SharePoint list of email addresses and a collection (derived from a different SharePoint list) of only the email addresses from that list.
This works:
Filter('SPList1', StartsWith('Title',DataCardEmail.Text))
I would also like to include a collection, lets call it colSPList2Email as part of this filter. Can this be done?
For clarity:
SPList1 has 2 columns. Title (items) + Email (addresses)
SPList2 has 1 column of Email address and colSPList2Email collects this when the app loads.
DataCardEmail contains the current users email address that is using the form.