How can add columns from one datatable to other in "Add data row activity"

Hello,

I have DataTable1 ( without Headers ). Created blank data table ( DataTable2) using Build Data table activity which include headers { String1 , String2}.
Now I want to copy entire 1st column from DT1 to 1st column of DT2 and so with second.

Can I do without using for each loop. Appreciate your help.

You can do like this
Read Range DT1 then use
Assign DT2= DT1.DefaultView.ToTable(False,“Column1”,“Column2”)

DT1 has no column name. Its giving error as Column1 does not belong to underlying DT.

Dear write the column name which Column you want from that dt