Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Cancatenate tables with different number of columns

Hi All,

Quick question, can I concatente 2 tables with different number of columns?

Thanks.

1 Solution

Accepted Solutions
trdandamudi
Master II
Master II

Yes, you can do and see the below code for a sample:

Table1:

Load * Inline [

No,Name

1,A

2,B

];

Concatenate

Table2:

load * Inline [

No,Product,Sales,Type

1,XYZ,1000,Q

2,QQW,2000,Z

];

View solution in original post

2 Replies
trdandamudi
Master II
Master II

Yes, you can do and see the below code for a sample:

Table1:

Load * Inline [

No,Name

1,A

2,B

];

Concatenate

Table2:

load * Inline [

No,Product,Sales,Type

1,XYZ,1000,Q

2,QQW,2000,Z

];

Not applicable
Author

Thanks!