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: 
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
Partner - Champion III
Partner - Champion III

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
Partner - Champion III
Partner - Champion III

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:)