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: 
TomBond77
Specialist
Specialist

Sort order is not working

Hi experts

Under "Sorting" I have expressed this sorting order:

match([Divisions_ST.Sort],
'Order Intake 3P',
'Order Backlog 3P',
'Net Sales',
'EBITDA',
'EBIT',
'EBIT in % of Net Sales',
'EBIT(R)',
'Cash Flow from Operations',
'Cash Flow from Investments',
'Free Cash Flow',
'Net Working Capital',
'Net Financial Position',
'Research & Development (self-financed)',
'Employees as per end of month')

As a result I get this:

TomBond77_1-1743664102393.png

 

Any ideas how to fix this?

Labels (6)
1 Solution

Accepted Solutions
krishna20
Specialist II
Specialist II

Solution 1: Try Max({1} Your_Dimension) if it not works ,

Solution 2: create an Inline table 

Load  * Inline [

Divisions_ST.Sort, %Dim_Sort

'Order Intake 3P',1
'Order Backlog 3P',2
'Net Sales',3
'EBITDA',4
'EBIT',5
'EBIT in % of Net Sales',6

];

Under the Sorting, select expression and add use %Dim_Sort in Ascending Order.

View solution in original post

4 Replies
krishna20
Specialist II
Specialist II

Under the Sorting, select expression and add your Dimension.

 

TomBond77
Specialist
Specialist
Author

That is exactly I did. Not working.

krishna20
Specialist II
Specialist II

Solution 1: Try Max({1} Your_Dimension) if it not works ,

Solution 2: create an Inline table 

Load  * Inline [

Divisions_ST.Sort, %Dim_Sort

'Order Intake 3P',1
'Order Backlog 3P',2
'Net Sales',3
'EBITDA',4
'EBIT',5
'EBIT in % of Net Sales',6

];

Under the Sorting, select expression and add use %Dim_Sort in Ascending Order.

TomBond77
Specialist
Specialist
Author

Thanks Krishna, Solution 1 is working!