Get Queue Items Sort Method

Hi all,

How to sort the list of queue items extracted using"Get Queue Items Activity" in descending order.

That means I should first look into the item processed first and then the next.

Thanks.

@Kajal_Singhal

Please try this in assign activity quls is the output of get queue items

Quls = quls.Orderby(function(x) Cdate(x.LastProcessingOn))

You can use orderbydescending as well the same way

Cheers

1 Like

Hey

give a try with

queueItems.OrderByDescending(Function(x) x.LastProcessingOn)

image

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.