I have a data table I want to loop through in, used the for each row in data table.
In my current Row there’s a column for Name, Age and Address, how do I select the value from Age?
I have a data table I want to loop through in, used the for each row in data table.
In my current Row there’s a column for Name, Age and Address, how do I select the value from Age?
You can do so in the following :
CurrentRow("Name")
or
CurrentRow("Name").ToString
Same method can be used to get the values of Age
and Address
It doesn’t seem to work
Hi @wdescalsota
Use Read Range activity
Store the value in the Data Table → DT
Use For each Row in Data table
User Assign activity
LHS - Create an variable
RHS - CurrentRow(“Age”).ToString
Refer the Screenshot
In Debug Mode, Please Make sure the Control is inside the For Each Row
Activity for the CurrentRow
to be used
Currently within it’s cope
This is the DT I am looping through
Sorry, this is right, I didn’t put any activity within body so robot didn’t go in, this works, Thank you
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.