Converting from datarow into datatable

Hi,

I am using for each row activity and getting the result as data row, once compared i want to convert all the datarow values into data table, how can i achieve it?

@Palaniyappan

1 Like

use add data row activity

Hey @monish06, i don’t know what have you tried so far, but in case you haven’t already, please take a look at the posts below, might help:

hi,
if you are looping through each row and checking for condition and then trying to push your rows to datatable then i would suggest you to go through the concept called LINQ QUERY which filters in one line and much faster than your for loop.

If you elaborate your issue a bit hope we can figure out the linq for you.

but if you want to go ahead with the solution what you have built then you need a separate data table
and you need to use Add datarow activity to add the rows into the data table.

image

  1. in ArrayRow you can type row.ItemArray
    image

  2. else in Data Row you can pass data row as such.

use 1 or 2 don’t use both because overloading is not allowed.
and provide the datatable.

Hope this helps.

1 Like

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