Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
mario-sarkis
Creator II
Creator II

list box

dear all have list box it shows like this:

Type
housing
Consumptions
Cars
Education
Credit Cards
Furniture

i need to eliminate the gray  Row  how can i do it any option ?

Thank you,

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Perhaps your Type field contains a value that's an empty string or only spaces. You can eliminate that in the load script with a where clause:

LOAD Type

FROM ...source...

WHERE Len(trim(Type))>0;


Another option could be using an expression instead of a field name for the listbox: =aggr(Type,Type).


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

Perhaps your Type field contains a value that's an empty string or only spaces. You can eliminate that in the load script with a where clause:

LOAD Type

FROM ...source...

WHERE Len(trim(Type))>0;


Another option could be using an expression instead of a field name for the listbox: =aggr(Type,Type).


talk is cheap, supply exceeds demand
mario-sarkis
Creator II
Creator II
Author

Thank You it Works:)