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: 
nickmarlborough
Creator
Creator

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*')