Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Load certain data using WHERE criteria

Hello,


I am trying to load only data where the following criteria is met:

Where[Prem Category Description]='SINGLES' AND [MI Sub Status Type]='CA'

Where do I put this statement in the load script?  I am having trouble getting it to work.


Thank you!

1 Solution

Accepted Solutions
sunny_talwar

After the from or resident table

LOAD FieldName

From YourDataSource

Where [Prem Category Description] = 'SINGLES' and [MI Sub Status Type] = 'CA';

View solution in original post

1 Reply
sunny_talwar

After the from or resident table

LOAD FieldName

From YourDataSource

Where [Prem Category Description] = 'SINGLES' and [MI Sub Status Type] = 'CA';