Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to Remove unused data at script level

Hello all, 

Zip_codes

500012
500001
500018
500002
800001
800015

I have data like this, My requirement is i don't want to load the Zip codes starts with '8' at script level. so How can i filter them.

please guide me.

Thanks

Kalyan

1 Solution

Accepted Solutions
Kushal_Chawda

try,

load *

From Table

where not wildmatch(Zip_codes,'8*')

View solution in original post

4 Replies
Kushal_Chawda

try,

load *

From Table

where not wildmatch(Zip_codes,'8*')

tresesco
MVP
MVP

Load

     Zip_codes

From <> Where Not WildMatch(Zip_codes, '8*');

maxgro
MVP
MVP

load * inline [

Zip_codes

500012

500001

500018

500002

800001

800015

]

Where

     not WildMatch(Zip_codes, '8*')

;



or


Where

     not Zip_codes like '8*';

Not applicable
Author

Thank you