FILTER WORK ITEMS TABLE

Hello guys, Im tryng to write on a excel file the result of the work item with this filter:
row(“Description”).Equals(“Calculate Client Security Hash”) AND row(“Status”).Equals(“Open”) AND CINT(row(“WIID”))<600000

but I dont get why this is the result :frowning: exam

Hi , Pls try using select Method
Use Assign activity
Datatable = Datatable.select(“[Description] = ‘Calculate Client Security Hash’ AND [Status] = ‘Open’ AND [WIID]<600000”).copytodatatable

where should I place the assign activity?

Hi , after you scrap/ get the details of the workitems into the Datatable

this is what it looks like… didnt try ur method yet

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