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

how to apply condition in qlikview

Hi

New to qlikview. Would like to perform an action which would be similar to following sql query in qlikview:

Select Name, Code

from Client_List

where Name in ('XXY','AAB')

3 Replies
Not applicable
Author

Define variable and take the value in to varibale and use this variable in any action.

sudeepkm
Specialist III
Specialist III

Load Name, Code

from Client_List

where Match (Name,'XXY','AAB');

Not applicable
Author

Load Name, Code

from Client_List

where Match (Name,'XXY','AAB')>0;