Hi All,
Right now, I open a bunch of data tables and put it in a list called datalist.
For(i = 2 ,i <= N Items(datalist) , i++,
fdt = datalist[1];
fdt<< Concatenate(Data Table(datalist[i]),append to first table(1));
close(Data Table(datalist[i]),nosave);
);
fdt << set name( "Final_Table");
This concatenates everything and it takes a lot of time when I try to concatenate 100's of tables together.
I have index of a column and I know exactly what I want to concatenate.
Right now, I need to concatenate first 7 columns and index number(say param_index=10) specified( column 10) for all the tables.
So the final table will just have 8 columns with all data tables.
I have been stuck on this for a while. Any idea how to do this?
OR
Is there a way to subgroup the columns (8 columns) and save it in the list in the first place, that it can be concatenated using the above script?
Thank you so much.