dt_WIs.Select?

So I don’t get this part what does that dt_Mean? do I have to create a new variable?

After extracting all the work items, you have to use the select method to filter the data table items.

syntax: data_table.Select(filterQuery)

Regards,
Karthik Byggari

1 Like

Thanks @KarthikByggari!

but what exactly do i type in and why? i don’t 100% get it!

Cheers!

I’ve done it thanks!!

1 Like

After extracting the work items using data scraping wizard, the data will be saved to a data table “dt_WIs”

Then you have to create a new data table variable "dt_WIList "and filter only WI5 items using the following expression.

dt_WIList = dt_WIs.Select("Type='WI5' AND Status='Open'")

Regards,
Karthik Byggari

3 Likes

Cool :slight_smile:

2 Likes

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