Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Hiding Filtered Rows

Hello!

I have some rubbish data in in among the good stuff.

I have filtered it out using another field, but my boxes look like this:

qx1.PNG

When I select 'hide excluded' they look like this:

qx2.PNG

Any chance I can filter this data? Either by:

a) I could filter the field used in the example in the loadscript: How do I say 'ignore this field if it is blank or contains a '['  '?

b) Get rid of the grey space in the examples above.

Obviously I think the first option is the better one.

Thank you so much!

Best,

Alex

1 Solution

Accepted Solutions
marcus_sommer

You could an expression for the listbox, something like this:

if(not wildmatch(YourField, '*[*', '*]*'), YourField)

But better is it to make such filter within the script maybe in an additional field like:

if(wildmatch(YourField, '*[*', '*]*'), 'invalid Data', 'valid Data') as YourFieldQuality

- Marcus

View solution in original post

5 Replies
marcus_sommer

You could an expression for the listbox, something like this:

if(not wildmatch(YourField, '*[*', '*]*'), YourField)

But better is it to make such filter within the script maybe in an additional field like:

if(wildmatch(YourField, '*[*', '*]*'), 'invalid Data', 'valid Data') as YourFieldQuality

- Marcus

MarcoWedel

Use this field expression in your listbox:

Aggr(D_Children, D_Children)

hope this helps

regards

Marco

MarcoWedel

like this:

QlikCommunity_Thread_170493_Pic1.JPG

QlikCommunity_Thread_170493_Pic2.JPG

hope this helps

regards

Marco

Not applicable
Author

Thank you!

MarcoWedel

you're welcome

regards

Marco