Hello,
I’m trying to perform same operations on different data tables and trying to put them together in ‘for each row’. Can i know what is the appropriate syntax for doing so. Here is the workflow which i have tried.
1 Like
You can’t iterate like that.
Use the below syntax. You can access both row_1 and row_2 inside the second for loop.
For Each row_1 in DT2
{
For Each row_2 in DT3
{
//you can access both row_1 and row_2
}
}
2 Likes
Did you get any Answer for this Question???
Hi, @KeertiJ
Just merge the datatables.