For a combobox i have this formula inside its items property:-
Distinct(With(
{
_Forms:
Distinct(
colRelatedPostingUnPostingForms,
'Location Name'
),
_Select:
Filter(
Locations,
StreetTitleSync in PostingFormStreetComboBox_1.SelectedItems
)
},
Ungroup(
ForAll(
_Forms As _Post,
Filter(
_Select,
Title in _Post.Value
)
),
"Value"
)
),Title)
now can i issue many delegable queries to sharepoint to build a collection inside a ForAll to mimic the in operator ? i know the collection can only hold up to 2000 items, but atleast the 2000 items will be matching the critiria i am defining to get the items