We have used below script on button click it's working fine within 2000 items.
We are trying to export more than 2000 items not working. Have already tried the delegation function with same collection name but got the error.
ForAll(
Gallery4_5.AllItems,
Collect(
colDataPlannerExported,
{
CDSID: ThisRecord.CDSID,
'Project Object ID': ThisRecord.'Project Object ID',
'Project Name': ThisRecord.'Project Name',
Billable: ThisRecord.Billable.Value,
'Billable Percentage': ThisRecord.'Billable Percentage',
PlannersEmail: ThisRecord.PlannersEmail,
'Planners CDSID': ThisRecord.'Planners CDSID',
Notes: ThisRecord.Notes
}
)
);
Set(
varFileLink,
ITBORallyExportExcel.Run(
JSON(
colDataPlannerExported,
JSONFormat.IncludeBinaryData
)
).filelink
);
Launch(varFileLink);
Clear(colDataPlannerExported);
Please provide any suggestions on this.

Report
All responses (
Answers (