Hi,
I have two datatable variables and I want to add all the values from DataTable2 to DataTable1. The tables have the same amount of columns. So, let's suppose this:
DataTable1: 2 Columns (Column1 - Column2) - 3 Rows
DataTable2: 2 Columns (Column1 - Column2) - 7 Rows
The expected result that I want is: 2 Columns (Column1 - Column2) - 10 Rows
I know I can achieve this with a for loop or even using Excel to paste the values and read all of them together. But those options don't work for me in my current use-case.
I was doing some research about using custom objects, JSON conversions, etc. but could not find anything useful. Maybe I can use some of the scripting actions available?
Thanks in advance!