Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

concatenate the intersected data

Hi,

I want to concatenate 2 qvds with intersected data.

I have 2 qvds. Both contain same field.

I want to load qvd2 with all data but load only intersected data from qvd1 . then i want to concatenate both qvds.

urget reply needed.

1 Reply
deepakk
Partner - Specialist III
Partner - Specialist III

HI rajni,

Use the Exists function or use inner join to make interaction between two qvds

eg:

Load * from A.

concatenate

Load

* from B where exists(PrimaryKey,PrimaryKey)

-----------------------------------------------------------------------

Load

* from A;

inner join

Load

* from B;