Hi all
I have to add a new value to each row in a Datatable
I have created a new column to store the data in, and in a “for each row” i assigning the value to the cell. So far so good.
Now the value is a random number, so in the start of the loop i run a small randomiser to change the value of the variable i want to put into the table.
In the next assign part i use the code
ExtractDataTable.Rows(0)(“rindex”)
With index being the column ofcause
However this only writes to the first row, not the other 504 rows (because i says "rows(0) i guess
What should it look like if its not row specific and hits all rows?