In Worktem Details Status of WI5 is open not in WorkItem Details

Filter the DataTable using a Filter Data Table activity keep only the items with the Type WI5 and the Status ‘Open’.

@saileela,

Here is how you should be extracting and filtering the Data.

Filter DataTable:

Sample Code:
Workflow.xaml (19.2 KB)

Thanks,
Ashok :slight_smile:

Hi @saileela ,
dt is your extracted data table
Take an assign activity
FilteredDT= dt.Select(“Type = ‘WI5’ AND Status = ‘Open’”).CopyToDataTable()

Hope this helps .