@mr-dang
I tried the following and encountered odd behavior...
ClearCollect(HundredChart, [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100]);
UpdateContext({firstrecord: First(KPIData)});
UpdateContext({lastrecord: First(Sort(KPIData,ID,Descending))});
UpdateContext({maxiter: RoundUp((lastrecord.ID-firstrecord.ID)/500,0)});
ClearCollect(iter,
AddColumns(AddColumns(Filter(HundredChart,Value<=maxiter),"min",(Value-1)*500),"max",Value*500)
);
Clear(datasource_temp);
ForAll(iter,
Collect(datasource_temp,
Filter(KPIData,ID>=firstrecord.ID+min && ID<firstrecord.ID+max)
)
);
UpdateContext({lastrecord: First(Sort(datasource_temp,ID,Descending))})
I have this in the onselect of a button and I have a label set to the lastrecord variable. When the pull is completed I see 2165 in the label and then is quickly changes to 500 in preview mode. In app mode I only see 500. I put a gallery on the screen showing the id of the datasource_temp collection and it only goes up to 500 in the preview.
Any idea what is going on here?