If you’re new to Qlik Sense, start with this Discussion Board and get up-to-speed quickly.
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?
Try:
Load
Color as "System Color"
Quantity
From "File"
where wildmatch(Color,'Red','Green');
Try:
Load
Color as "System Color"
Quantity
From "File"
where wildmatch(Color,'Red','Green');
Thank you so much