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: 
Not applicable

How to subset data based on a condition in the script editor?

Hi,

I have table1 with some columns, I want to create another table, table2 which has only those rows in which column1 = 'x'(sub-setting) , for example.

How can I do this using qlik sense data load editor?

Thanks,

Srijhari

3 Replies
Not applicable
Author

I think you can use where, example below:

table1:

load a,

          b,

          c,

          d

from source where a<>'teste';

table2:

load a as 1,

          b as 2,

          c as 3,

          d as 4

from source where a='teste';

or

table1:

load a,

          b,

          c,

          d

from source;

table2:

load a as 1,

          b as 2,

          c as 3,

          d as 4

residente table1 where a='teste';

Not applicable
Author

Thank you so much!

Not applicable
Author

good...mark witch corretc repost if as halpful for community stay organized