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: 
amiroh81
Creator
Creator

load from 2 qvd

Hi

I Have 2 QVD,

I want to load the first one and in the where option to load fron the secound qvd,

what is the right syntax ?

thanks in advanced

Amir

2 Replies
ashfaq_haseeb
Champion III
Champion III

Hi,

Try something like below

Second:

Load

ID,

Filed1,

Field2,

.

.

FieldN

From Second.qvd;

First:

Load

ID,

Filed1,

Field2,

.

.

FieldN

From First.qvd Where Exists(ID,ID);

Regards

ASHFAQ

renjithpl
Specialist
Specialist

Hi Amir,

What you want to achieve, basically, this is how a very basic load from two QVD's look like..

pls provide more details if anything else required.. thanks

First_QVD:

LOAD Date,
ID,
Value
FROM
\\..\First.qvd
(
qvd);
Second_QVD:
LOAD Name,
ID
FROM
\\..\Second.qvd
(
qvd) where ID <> '54321';