If I have two data tables
Data Table 1
1
2
3
Data Table 2
a
b
c
Using For each row How can I write the output like as following
1
a
2
b
3
c
How to use the For each row activity in ui path to excecute data tables in the above manner
If I have two data tables
Data Table 1
1
2
3
Data Table 2
a
b
c
Using For each row How can I write the output like as following
1
a
2
b
3
c
How to use the For each row activity in ui path to excecute data tables in the above manner
index = 0
For Each row in DT1
Print, row(0).ToString
Print, DT2.Rows(index)(0).ToString
index = index + 1
Also see the attached file.
Main.xaml (9.8 KB)
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.