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

Join tables on QV

Hello, i want join two tables with the same fields but i have duplicated values. My tables are like this :

table1:                                                                        table2:

article, desc, n°commande                                        article, desc, joinedArticle, Grp

8855, fruit, 0205549                                                   8855, fruit AB, 885596, rouleau

                                                                                   8855, fruit, 885595, rouleau

                                                                                   8855, fruit hg, 885585, rouleau

i also want to display values who don't match.

So my question is how to delete duplicated values and keep all my values ?

1 Solution

Accepted Solutions
hcabrera
Contributor III
Contributor III

Hi,

Try:

DATA:

LOAD article,

          desc,

          n°commande

FROM

Table1

Left Join

LOAD DISTINCT article,

          desc,

          joinedArticle,

         Grp

from

Table 2

View solution in original post

1 Reply
hcabrera
Contributor III
Contributor III

Hi,

Try:

DATA:

LOAD article,

          desc,

          n°commande

FROM

Table1

Left Join

LOAD DISTINCT article,

          desc,

          joinedArticle,

         Grp

from

Table 2