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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Blank filter

I have a filter that shows an empty field. Is there any way to make that blank filter disappear? (Theres a number linked to that blank filter, but i don't need to show it, that's why i dont wan't it to appear on my qv)

1 Solution

Accepted Solutions
consenit
Partner - Creator II
Partner - Creator II

Hi there.

I usually filter out null values in my script, something like:

LOAD

     ...

     IF(ISNULL(fieldname), 'NO DATA', fieldname),

     .....

Kind regards,

Ernesto.

View solution in original post

2 Replies
consenit
Partner - Creator II
Partner - Creator II

Hi there.

I usually filter out null values in my script, something like:

LOAD

     ...

     IF(ISNULL(fieldname), 'NO DATA', fieldname),

     .....

Kind regards,

Ernesto.

Not applicable
Author

Perfect! That's the solution, thank you Ernesto!