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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
sifatnabil
Specialist
Specialist

Where clause to filter on values from table

Hi all,

I have a large QVD table that I want to filter by 150 "desk codes" (stored in an Excel sheet). What is the most efficient way of building a where clause that filters by these desk codes? Would left keep be fastest and the least RAM consuming? i.e.

DeskCodes:

LOAD

DeskCode

from [Excel.xlsx];

left keep

QVDTable:
DeskCode,

A,

B

from [QVD.qvd] (qvd);

1 Solution

Accepted Solutions
sunny_talwar

May be this:

DeskCodes:

LOAD

DeskCode

from [Excel.xlsx];

QVDTable:
DeskCode,

A,

B

from [QVD.qvd] (qvd)

Where Exists(DeskCode);

View solution in original post

1 Reply
sunny_talwar

May be this:

DeskCodes:

LOAD

DeskCode

from [Excel.xlsx];

QVDTable:
DeskCode,

A,

B

from [QVD.qvd] (qvd)

Where Exists(DeskCode);