Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How can I load only those customers whose ID is in the first table?

I have loaded the table which includes customers, they ID numbers and more information. I have the QVD file, where is another information about customers, there is same customers (same ID number) as in the first table and others, which I don't need.

How can I load only those customers to second table whose ID is in the first table?

3 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

   Have a look at the below link.

   http://qlikviewmaven.blogspot.com/2009/01/qlikview-exists-function.html

   Hope this helps.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
lironbaram
Partner - Master III
Partner - Master III

hei  two options:

1. load the first table with the Customer you want

then load the second table  like

load *

from SecondTble

where exists(CutomerID);

2. load the first table and then write

leftjoin(tab1)

Load *

from  SecondTble

Not applicable
Author

Thanks, it helped