Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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