How to get specific data from data table and make it as value to be typed in TypeInto activity

Hi @_waysi ,

When you reference CurrentRow(0).ToString in the first iteration, it will retrieve data from the First Row from the First Column i.e.,

Column1 Column2 Column3
AA AA1 AA2
BB BB1 BB2
CC CC1 CC2

Similarly, CurrentRow(1).ToString will retrieve data from the First Row and the Second Column

Column1 Column2 Column3
AA AA1 AA2
BB BB1 BB2
CC CC1 CC2

I hope we are on the same page here?

Kind Regards,
Ashwin A.K