Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
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')

;