Hi
I am using the below to return a collection
Concurrent(
ClearCollect(
colPNChunk1,
Sort('Part List', Title, SortOrder.Ascending)
),
ClearCollect(
colPNChunk2,
Sort('Part List', Title, SortOrder.Descending)
)
);
ClearCollect(
colPN,
{Result: "All"},
colPNChunk1,
Filter(colPNChunk2, Not(ID in colPNChunk1.Title))
);
Clear(colPNChunk1);
Clear(colPNChunk2)
but the result are not showing in the combo box. Any ideas?