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

Table Filter Options

Hello, I'm a Newby so i'm hoping anybody could tell me how too do this..

I've created a table like this:

LOAD*INLINE [
COBRA Table1
Z00001
Z00002
Z00003
ZNIET1
20
Z00004
];


This works fine, but i wonder if there is anyway that i can Filter "20" / "ZNIET1" out of this table. Or to show only the "Z00001" / "Z00002" / "Z00003" / "Z00004" values.

( this is a small example the normal lists contains more rubbish, I'd like to have only the Z00001 / Z00002 / Z00003 / Z00004 values left ).

Thanks!

Mark

1 Solution

Accepted Solutions
Not applicable
Author

Useee the power of w�ldmatch .. 🙂

best regards


COBRATable1:
LOAD * WHERE WILDMATCH([COBRA Table1],'Z0*');
LOAD*INLINE [
COBRA Table1
Z00001
Z00002
Z00003
ZNIET1
20
Z00004
];


View solution in original post

3 Replies
Not applicable
Author

Useee the power of w�ldmatch .. 🙂

best regards


COBRATable1:
LOAD * WHERE WILDMATCH([COBRA Table1],'Z0*');
LOAD*INLINE [
COBRA Table1
Z00001
Z00002
Z00003
ZNIET1
20
Z00004
];


Not applicable
Author

Thanks! Works great!Big Smile

Not applicable
Author

Thanks! Works great!Big Smile