Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

List Box Needs to Retain Ascending Order and Show BLank Value at the Bottom ?

Hi,

we have a list box with one blank value in that.

we would need to show list box values in ascending order.

currently, it shows values in ascending order with blank value on the top.

we need to keep ascending order and show blank value very last in bottom of list.

can someone help with that ?

3 Replies
roger_stone
Creator III
Creator III

One way to do it would be to have a numeric tag to each row and make sure the blank row gets the highest tag:

LOAD * INLINE [

Name, Value

,4

A,1

B,2

C,3

];

Then in the Sort tab of the listbox:

Capture.PNG

Anonymous
Not applicable
Author

Hi,

I guess that isn't possible to sort the list box and put 'the blank' in very last, because it's a default form of qlikview.

But you can treat this blank value in script and put some value on it, like 'null' or 0.0000001.

Best Regards

maxgro
MVP
MVP

maybe playing with the sort order

1.png