I have two data tables. Some columns on table2 are identical to columns table1.
I wasnt to copy the data of the identical columns from table2 to table1.
That means, of course, that (1) table1 will be expanded with the number or rows in table2 and, (2) there will be missing data in table1. That's OK.
My issue is how to copy the data from table2 to table1.
E.g. - both tables have column "NAME". Table1 has 1000 rows, table2 has 2000 rows.
The results will be: table1 with 3000 rows, and "NAME" on table1 will be a "concatenation" of both NAME columns. Other columns in table1 will have 2000 missing/empty data.
BTW, in reality, tables are much larger and there are 10-20 identical columns (out of ~100). I will deal with it once I figure out the basic function. I mention it in case there's an issue with such size.
Many thanks