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

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Store

Hi,

is it possible to use store with where statements? and if it is, how is it used? can't seem to find anything in the help files..

Regards,
Kjetil

1 Solution

Accepted Solutions
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

No, the syntax of Store doesn't include "where" clause. You can first load a separate table (remember to use NOCONCATENATE if you are loading exactly the same fields) with applied selection, and then store that table. For example:

OriginalTable:

load

A,B,C

from ...

LimitedTable:

NOCONCATENATE Load * resident OriginalTable where A>0;

store LimitedTable into myQVD.QVD;

drop table LimitedTable;

hope it helps,

Oleg

Ask me about Qlik Sense Expert Class!

View solution in original post

1 Reply
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

No, the syntax of Store doesn't include "where" clause. You can first load a separate table (remember to use NOCONCATENATE if you are loading exactly the same fields) with applied selection, and then store that table. For example:

OriginalTable:

load

A,B,C

from ...

LimitedTable:

NOCONCATENATE Load * resident OriginalTable where A>0;

store LimitedTable into myQVD.QVD;

drop table LimitedTable;

hope it helps,

Oleg

Ask me about Qlik Sense Expert Class!