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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Qlikuser09
Creator II
Creator II

Data load editor where clause

I want to create a new table from the existing table using the load function.I am trying to load the data that has the word "%senior% " in the data.  however, the load condition is fetching all the data irrespective of the where condition and want to create a flag based on that condition

Test:

load

Field 1, field 2 

resident table 1

where field 1 = "%Senior"

 

1 Reply
MayilVahanan

HI

Try like below

load

Field 1, field 2 

resident table 1

where wildmatch(field 1 ,'%Senior*');

 

It will fetch all the field1 records contains word '%Senior' .

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.