Copy Values from One column of DT1 to another column of Dt2

Hi @Manii_K
You can use this Linq
DT2 = (From row in DT1
Let x = New Object(){row(“Item”),row(“ID”),row(“Department”)}
Select DT2.Clone.Rows.Add(x)).CopyToDataTable

1 Like