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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
ecabanas
Creator II
Creator II

How to filter data inside list box

Hi,

I have a list box with some data, as I show in the picture, but I don't want to see the blank and null values, is it possible to filter them?

Thank's

Eduardlistbox.jpg

2 Replies
er_mohit
Master II
Master II

in script you have to do it

load

A,B

C,

if(Fimilia<> '',Fimilia) as Fimilia

from

table;

if <Null> also your field value in Familia then

use this

if(Fimilia<> ''and Fimilia<> '<Null>',Fimilia) as Fimilia

hope it helps

MayilVahanan

Hi

Try like this

Either: in list box

if(trim(Len(Fimila)) > 0 or Fimila <> '<NULL>', Fimila)

or in load script:

Load

*,

if(trim(Len(Fimila)) > 0 or Fimila <> '<NULL>', Fimila) AS Fimila

from table;

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.