Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Vidit
Creator
Creator

Load. concatenate two excel and get a sorted output?

Hi guys,

i have two excel with same structure. i want to load and concatenate them in such a way that the output should be sorted by 1st column (SNO).

Can anyone suggest me the simplest way to achieve it?

Thnx

2 Replies
Gysbert_Wassenaar

If the two excel tables have exactly the same number of fields and exactly the same names then the data will be appended into one table automatically. If that doesn't happen add a concatenate statement to the second load:

T1:

load * from ...excelfile1...;

concatenate(T1)

load * from ...excelfile2...;

You can specify a sort order for most charts. See the Sort tab of the objects properties window. If you feel that you must do the ordering in the script then you need an additional resident load to sort the table:

T2:

load * resident T1

order by SNO;

drop table T1;


talk is cheap, supply exceeds demand
Vidit
Creator
Creator
Author

Hi Gysbert,

thanks for your reply. But i was wondering if we can do it in a single step? is it possible to concatenate and sort both files in one step and avoid creation of T2