How can I assign a particular value to a column of datatable using assign activity
Hi @sruthesanju ,
You can write it as
CurrentRow(“ColumnName”) = YourValue
This syntax should be used inside foreachrow
If you want to assign directly on particular row then use it as
dt.rows(rownumber)(“ColumnName”) = YourValue
use this in for each row loop
How to mention some specific datatable
hi @sruthesanju
Create another for each for another datatable and use like
row(“CName”)= …