Transferring a data table to a specific column of another

Hi @dr1992

You might have to create a new row in the new table and manually map all the values. You can create a new row for your table with dt.NewRow like so:
image

This might unblock your current workflow.


Apart from the unblocking part, wouldn’t the Merge Data Table fit here a bit better?

You could use a temporary table to extract the data in chunks, and then keep merging each chunk into the final data table until all the data is extracted.