Hi,
I have two related SharePoint Lists by an ID. List 1 contains the information I want to display in the gallery. List 2 contains a field that I want to filter on.
I have created two galleries one for List 1 (Gallery 1) and one for List 2 (Gallery2). Gallery 2 is being filtered by the selection of a combo box.
Filter(
Gallery2,
IsBlank(CB_Filter.SelectedItems)||IsEmpty(CB_Filter.SelectedItems) || Filter_GUID =
Value(CB_Filter.Selected.ID)
)
Gallery 1 is looking at the IDs contained in Gallery 2 that are common using the following code:
Filter(
'Gallery1',
GUID in Gallery2.AllItems.Gallery1_GUID
)
However, the in operator causes delegation issues. Is there a work around for this?