Filter the DataTable using a Filter Data Table activity keep only the items with the Type WI5 and the Status ‘Open’.
Here is how you should be extracting and filtering the Data.
Filter DataTable:
Sample Code:
Workflow.xaml (19.2 KB)
Thanks,
Ashok ![]()
Hi @saileela ,
dt is your extracted data table
Take an assign activity
FilteredDT= dt.Select(“Type = ‘WI5’ AND Status = ‘Open’”).CopyToDataTable()
Hope this helps .


