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: 
prees959
Creator II
Creator II

Simple Load Where In....

Hi,

Can anyone give me the easiest way to  do the following SQL like statement in Qlikview:

Select * from [Table A] where value123 in ('Blue',' Black','Red','Orange','Purple','Green','Violet','Cyan','Magenta','Lime')

Many thanks,

Phil

1 Solution

Accepted Solutions
neelamsaroha157
Specialist II
Specialist II

Load *

from

[Table A] where Match(value123, 'Blue',' Black','Red','Orange','Purple','Green','Violet','Cyan','Magenta','Lime')

;

View solution in original post

2 Replies
vishsaggi
Champion III
Champion III

Try like:

LOAD *

WHERE Match(value123, 'Blue',' Black','Red','Orange','Purple','Green','Violet','Cyan','Magenta','Lime')>0;

SQL

Select * from [Table A];

neelamsaroha157
Specialist II
Specialist II

Load *

from

[Table A] where Match(value123, 'Blue',' Black','Red','Orange','Purple','Green','Violet','Cyan','Magenta','Lime')

;