Have been watching a couple of Videos and haven’t understood how to copy an entire row from Table 1 to Table 2.
Example : Table 1 Consists of 3 columns “A”,“B”,“C”
I Create another table using the Build Table which is named as Table2 with the same set of columns.
I now want to add data from Table1 to Table2.
What is observed is that there are 2 options called the ArrayRow and DataRow. From a context I was able to understand the ArrayRow, what and how DataRow is used? and where can I find a proper resource on this?
Can someone help on this usecase and how it can be used in the iteration of the data in the datatable using ForEach Row?
Do you want to copy specific rows based on certain conditions? then you use for each row activity to loop through each row and inside if condition provide add data row activity and specify the datatable name (the table you have created using Build data table activity) and specify the row to be added