Hi guys! How are you?
I have a little question for you.
If I have a Row Index variable and I want to write a value in that row, how can I do it with an assign activity?
1 Like
Hi
Yah that’s possible
We can use a simple assign activity like this
Yourdatatablename.Rows(yourrowindexvariable)(columnindex) = “yourvalue”
Make sure that both rowindex and column is of type int32
If not mention as convert.ToInt32(yourrowindexvariable.Tostring)
Instead of just yourrowindexvariable
Hope this would help you
Cheers @Enzo_Rossetti