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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Sasi3557
Contributor II
Contributor II

Conconate and link the qvds

Hi all

i wanted to conconate two qvd’s and then link that qvd with other qvd that is loaded next. While i am doing it is adding all the data from all the qvds.

let say

load

text(sales_id) as _LINK_key

test.qvd

conconate 

test1.qvd

load

text(sales_id) as _LINK_key

access.qvd

Is this right?

Labels (2)
2 Replies
jyothish8807
Master II
Master II

Hi Sasi,

try this:

load

text(sales_id) as _LINK_key

from test.qvd;

Concatenate

load *

from test1.qvd;

No Concatenate

load

text(sales_id) as _LINK_key

from access.qvd;

 

Br,

KC

Best Regards,
KC
Rojarao
Contributor III
Contributor III

NoConcatenate
load text(sales_id) as _LINK_key From test.qvd(qvd);
Concatenate
Load * From test1.qvd(qvd);
NoConcatenate
Load text(sales_id) as _LINK_key From access.qvd(QVD);