Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
nickmarlborough
Contributor III
Contributor III

multiple where condition

hi, 

would like to do a:

 

load*

resident [table] where [FIELD 1 contains 'Yes'] and where [FIELD 2 contains 'team']

 

how would i do this in the load editor?

Labels (1)
2 Replies
Brian_C
Contributor III
Contributor III

Try

load*

resident [table]

where [FIELD 1]= 'Yes'  and [FIELD 2]= 'team';

Or
MVP
MVP

Wildmatch() is your friend!

e.g. Wildmatch(Field1,'*Yes*')