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

How join tow tables

Hi Friends,

I have two tables like this

Table1:

Load * inline

[

Acc value

2014 xxx

2014 yyy

2014 xxxx

];

Table2:

Load * Inline

[

Abc value

2014 xxx

2014 yyy

2014 8888

2015 xxxx

];

I want to separate data into 2014 and 2015 qvds with no duplicates and repetitions.


Thanks

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Try with

TableAll:

Load * inline

[

Acc value

2014 xxx

2014 yyy

2014 xxxx

];

Inner Join

Load * Inline

[

Abc value

2014 xxx

2014 yyy

2014 8888

2015 xxxx

];

Anonymous
Not applicable
Author

you can join your table as required .. see example and also see the post.

Different Join Functions in Qlikview

Table1:

Load * inline

[

Acc value

2014 xxx

2014 yyy

2014 xxxx

];

left join(Table1)

Load * Inline

[

Abc value

2014 xxx

2014 yyy

2014 8888

2015 xxxx

];