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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
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);

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

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
MVP
MVP

May be this:

DeskCodes:

LOAD

DeskCode

from [Excel.xlsx];

QVDTable:
DeskCode,

A,

B

from [QVD.qvd] (qvd)

Where Exists(DeskCode);