Hello and thanks in advance!
I wrote the following concurrency. This collects data from a sharepoint list called "whereabouts" into the collections ColA, ColB, ColC and ColD and is collected into the final collection called ColWhereabouts2. I've confirmed the data is getting collected properly but it eventually hits it's threshold at 2,000 records. My filter is on the Out of the Box ID column in sharepoint. Any ideas what i'm doing wrong?
Concurrent(
ClearCollect(
ColA,
Filter(
WhereAbouts,
ID < 2000
)
),
ClearCollect(
ColB,
Filter(
WhereAbouts,
ID > 2000 And ID < 4000
)
),
ClearCollect(
ColC,
Filter(
WhereAbouts,
ID > 4000 And ID < 6000
)
),
ClearCollect(
ColD,
Filter(
WhereAbouts,
ID > 6000 And ID < 8000
)
)
);
ClearCollect(
ColWhereAbouts2,
ShowColumns(
SortByColumns(
ColA,
"ID",
Ascending
),
"Employee",
"EmployeeEmail",
"StartDate",
"EndDate",
"Location",
"Department",
"Whereabout_x0020_Concat",
"WhereaboutType",
"ID"
),
ShowColumns(
SortByColumns(
ColB,
"ID",
Ascending
),
"Employee",
"EmployeeEmail",
"StartDate",
"EndDate",
"Location",
"Department",
"Whereabout_x0020_Concat",
"WhereaboutType",
"ID"
),
ShowColumns(
SortByColumns(
ColC,
"ID",
Ascending
),
"Employee",
"EmployeeEmail",
"StartDate",
"EndDate",
"Location",
"Department",
"Whereabout_x0020_Concat",
"WhereaboutType",
"ID"
),
ShowColumns(
SortByColumns(
ColD,
"ID",
Ascending
),
"Employee",
"EmployeeEmail",
"StartDate",
"EndDate",
"Location",
"Department",
"Whereabout_x0020_Concat",
"WhereaboutType",
"ID"
)
);