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

How to filter what gets loaded into script

So I need to load several fields of data from various tables in a data base at work. Unfortunately, the fields contain several million lines of data, so I need to narrow down what I load from certain fields. Let's say I want to load fields A, B, and C, but I only want to load data from field A with values of 6. How would I edit the script to accomplish this?

1 Solution

Accepted Solutions
sunny_talwar

May be like this:

LOAD A,

          B,

          C

FROM Source

Where A = 6;

View solution in original post

1 Reply
sunny_talwar

May be like this:

LOAD A,

          B,

          C

FROM Source

Where A = 6;