How to convert a System.Data.DataRow in String?

Dear All,

I would like to convert a System.Data.DataRow in a string, as i am using a for each row loop,i want to see the value that is in every row, and if the value is the cell locatio (e.g A1), or if is only a integer number.

convert to datatable and after use output table activity

1 Like

@Lucas_Silva

We can’t convert directly DataRow into string.

  1. Use Build DataTable activity to create DataTable and say ‘DT’.

  2. And then use Add DataRow activity and pass that DataRow and also created DataTable ‘DT’.

  3. And then use Output DataTable activity and it will convert DataTable into string.

2 Likes

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