I have 2 data tables. First table has 4 columns and Second table has 5 columns. The 5th column in second data table calculated column. Tables schema are shown below.
First Table Columns: A B C D
Second Table Columns:
A1 B1 C1 D1 E1=(A1+B1 *10) here E1 is calculated column.
Now I want to tear off only column E1 from Second table and append it to First table. So my First table will look like.
A B C D E1
Is there any direct way to do this?