Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Smeenakshi23
Creator II
Creator II

Null value at the bottom

can we display null value at the bottom of the list box.. There is a filed called origin and it has null value, it always displays at the top of the list box. I need to display the null value at the bottom.qlikc

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

Then you should be able to use a sort by expression. Something like

     =If(Len(Data)>0, Data, 'ZZZZZZ')

Capture.PNG

That's for an alpha text field. If the field is numeric, change the ZZZZ to a higher number than any of the real numbers.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

3 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

True null values do not display in a list box. You may have an empty string or a NULLASVALUE setting for that field. If its not responding to an alpha sort, then its possibly the latter.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Smeenakshi23
Creator II
Creator II
Author

Yeah ypu are correct I have an empty string at the top of the lust box. So we cannot move that to botoom of the list box?

jonathandienst
Partner - Champion III
Partner - Champion III

Then you should be able to use a sort by expression. Something like

     =If(Len(Data)>0, Data, 'ZZZZZZ')

Capture.PNG

That's for an alpha text field. If the field is numeric, change the ZZZZ to a higher number than any of the real numbers.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein