Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Crosstable Concatenation

Hi,  Can anyone say how to concatenate the cross table?

5 Replies
hic
Former Employee
Former Employee

You need to do it in two steps. First concatenate the tables, then apply the Crosstable on the resulting table. E.g.

tmp:

Load * from Table1;

Load * from Table2;

Final:

Crosstable (...) Load * from tmp;

Drop table tmp;

HIC

arulsettu
Master III
Master III

Hi

Merging tables: concatenation » The Qlik Fix! The Qlik Fix!

refer this site may be you will get the answer...

Not applicable
Author

hi

firstly concate both table and then get desired(merge) table.

then apply crosstable on this merge table.

Not applicable
Author

thank you henric

Not applicable
Author

hi thanks for all