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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
1 Solution

Accepted Solutions
marcus_sommer
MVP
MVP

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
MVP
MVP

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
MVP
MVP

Use this field expression in your listbox:

Aggr(D_Children, D_Children)

hope this helps

regards

Marco

MarcoWedel
MVP
MVP

like this:

QlikCommunity_Thread_170493_Pic1.JPG

QlikCommunity_Thread_170493_Pic2.JPG

hope this helps

regards

Marco

Not applicable
Author

Thank you!

MarcoWedel
MVP
MVP

you're welcome

regards

Marco