Good day all,
Is there a way to translate a canvas app filter into a Flow?
This code worx fine against a dataverse table. But it returns a max of 2000 records because of the use of collections, I'm told.
But I am at a loss as to how to construct the Flows filter to return more than 2000 records.
Can someone offer some help please?
Chris
Set(
varForJson,
ClearCollect(
colForJSON,
Search(
Filter(
[@'Schools Data'],
And(
!IsBlank(EMAIL),
Or(
IsBlank(TabListProvinces.Selected.Value),
PROV = TabListProvinces.Selected.Value
),
Or(
IsBlank(DropdownSpec.Selected.Value),
SPEC = DropdownSpec.Selected.Value
)
)
),
SearchBox.Value,
"cra31_title",
"cra31_lastname",
"cra31_city"
)
)
);