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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
ogatchell
Contributor III
Contributor III

What function joins Table 2 to Table 1, resulting in Table 3?

Neither a Concatenate or Left Join will accomplish this. 

 

 
 
 
Labels (1)
1 Solution

Accepted Solutions
Vegar
MVP
MVP

Try something like the script below. 

 

Table3:

Load 

Name,  Value

From Table1;

 

Concatenate Load 

Name,  Value

From Table2

Where not exsists(Name) ;

View solution in original post

2 Replies
Vegar
MVP
MVP

Try something like the script below. 

 

Table3:

Load 

Name,  Value

From Table1;

 

Concatenate Load 

Name,  Value

From Table2

Where not exsists(Name) ;

ogatchell
Contributor III
Contributor III
Author

thanks, Vegar