Hello,
I have a DataTable with three columns. In column 0 and column 1 there are numbers as integers.
I want to add column 0 with column 1 and write the result to column 2.
I write this in the activity Assign:
var_ExcelDataTable(0)(2) = var_ExcelDataTable(0)(0) + var_ExcelDataTable(0)(1)
Unfortunately, the mathematical operator is not used.
Is there a solution?