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: 
qlikcheepirishe
Creator
Creator

Sorting filed values '-' as Topmost in dimension

My requirement is that dimension having "  - " should appear in the top what will be steps to fullfill the requirement

PFA below

8 Replies
prma7799
Master III
Master III

try this

ass.png

or may be your data model association is not created properly

qlikcheepirishe
Creator
Creator
Author

in pivot want to show in in first position for ' - ' in Area and Sub Area

prma7799
Master III
Master III

Please share some sample app or do sorting on SUB AREA as ascending

qlikcheepirishe
Creator
Creator
Author

I required null values to be positioned on top how could i achieve it

greend21
Creator III
Creator III

Try sorting your numbers is Ascending order on the Number tab of the Chart Properties. That should put null values at the top.

greend21
Creator III
Creator III

If it is a dimension then see the Sort tab.

MK9885
Master II
Master II

It can be done in script but can you provide a small sample data as more than 1 dimension has - value

MK9885
Master II
Master II

You could try

LOAD * INLINE [

    SortUnit, Unit,

    1, -

     ];


In frontend sort by expression by just giving SortUnit and descending.

that may work, not sure though.