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

Selecting certain records while LOADing in QlikSense

What is the syntax for restricting rows while loading data using Data Load editor.

For example I want to load "Color" column where the values are ONLY red and green

Load

Color as "System Color"

Quantity

From  "File"

where color in ('Red', 'Green')

How to do this?

1 Solution

Accepted Solutions
shraddha_g
Partner - Master III
Partner - Master III

Try:

Load

Color as "System Color"

Quantity

From  "File"

where wildmatch(Color,'Red','Green');

View solution in original post

2 Replies
shraddha_g
Partner - Master III
Partner - Master III

Try:

Load

Color as "System Color"

Quantity

From  "File"

where wildmatch(Color,'Red','Green');

rvijayanth
Creator
Creator
Author

Thank you so much