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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
pkpandey
Contributor III
Contributor III

Filter Data while loading

How to filter data while loading a qvd without using where clause. For example I have a field named state and I want to load data only for "ORISSA" without using where clause. How will I do that?

1 Solution

Accepted Solutions
2 Replies
agomes1971
Specialist II
Specialist II

Anonymous
Not applicable

Try like this?

Load

*,

if(State='ORISSA', State) as State

From YourQVD;