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: 
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?

Labels (1)
1 Solution

Accepted Solutions
agomes1971
Specialist II
Specialist II

2 Replies
agomes1971
Specialist II
Specialist II

Anonymous
Not applicable

Try like this?

Load

*,

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

From YourQVD;