In this excel sheet except “account” i need to get all the values.
i need to filter based on the " account"
Use read range on excel and output is datatable.Then
datarow=Outputdatable.select("dept <> ‘account’ ")
2 Likes
@sreekanth
Outputdatable.select("[dept]= ‘account’ ")
in the above statement can i give array variable which contains different values instead of “account”. how can i give it.
list.xaml (8.2 KB)
1 Like
@sureshselvamani
I am attaching a workflow that
- Reads excel into data table
- Select the required rows from the datatable.
- Copy the required rows in another datatable.
- Output the new datatable.
Please let me know if you have any queries.
list.zip (7.8 KB)