Adding a new column to a datatable

Hey,

I am doing Lev 1-9 excel part and have some curiosities regarding below. This is about adding the value in column 1 and column 2 and write the result in a column 3.

Can anyone explain to me

  1. why cell1 and cell2 are to be converted to String and parsed to be added?
  2. where in the picture, row(2) is written: it just created a variable named row(2) but isn’t that just a name and we need to write somewhere some thing like “Write Cell” to row(2)?
1 Like

Hi @Daun

Have u tried using add data column activity
within the build datatable activity

Thanks
Ashwin S

@AshwinS2
I think yes I used it before. Is that somehow related to the answers to my questions? I am trying to learn!

Hi @Daun ,

  1. The variables valueA & valueB may be declared as String datatype. In the image row refers the DataRow datatype, as we are reading an item stored in the row (DataRow) using it’s index value [i.e row(0) and row(1)] and trying to store it into a String datatype variable, conversion/type casting is mandatory here. So .ToString is used for type casting.

  2. Let me know what’s there after Integer.Parse(Value in the last Assign activity. So I can help you with my answer for your 2nd query.

Hope this helps you somehow :slight_smile:

1 Like

Integer.Parse(valueA) + Integer.Parse(valueB)

Answer for Query 2 - Since we have to add the 2 String DataType variables, they are using Integer.Parse for Type Casting. We can also use like this Convert.ToInt(valueA) + Convert.ToInt(valueB)

Hi @cthamizh,
I tried to create a variable with int32 type and put the extracted value from the datarow but couldn’t. So, maybe that means a datarow emits only string datatype?

Hi @cthamizh,

but, isn’t it just a variable name and there is no where putting the variable into the row(2) cell?

image
Sum B.xaml (9.1 KB)
I attached the whole .xaml for your reference! Thank you!

no worries
lets go one by one
–usually when we read a data from excel it will read in a datatype of type STRING and inorder to add two values obtained we need to convert them to a INTEGER
so for that we need to parse them to integer.

and for this

no buddy its not just a name or a variable here row is a variable that we obtain from for each row loop and it means each row that is getting iterated for each loop by the for each row loop activity
so here row(2) means column 3 and the current row which is under iteration, where 2 is the column index of third column and usually column index starts from 0 for the first column
So row(2) = integer.parse(valueA) + integer.parse(valueB)
means the sum of these two values will be assigned to the third column of the current row and its cell which is under iteration inside the for each row loop activity

Fine your workflow looks perfect this will
–read the excel and get the output with a datatable variable
–and use add datacolumn to add column atlast named “C”
–then use for each row loop to iterate through each row and assign the sum value to the third column of each row for each iteration
–but make sure that this property of ADD HEADERS is enabled in the write range activity so that it will write back to the excel with the column headers
image

hope this would help you
Cheers @Daun

1 Like

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