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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Clause in

hello,

i search an equivalent to "clause in" in qlikview

i would like do that

load *

FROM mytable

where Field1 in (A1,A2,A5);

1 Solution

Accepted Solutions
perumal_41
Partner - Specialist II
Partner - Specialist II

Hi,

use this script 

load *

FROM mytable

where match(Field1, A1,A2,A5)>0; This Script helpful for Your Requirement .

View solution in original post

1 Reply
perumal_41
Partner - Specialist II
Partner - Specialist II

Hi,

use this script 

load *

FROM mytable

where match(Field1, A1,A2,A5)>0; This Script helpful for Your Requirement .