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: 
Not applicable

Sorting in Qliksense

Hi

I have a pivot table with a Row with a field called 'Sub Area' and have a nested if  in the column  with the expression '

if(Stops='Stops','Stops',

IF(Print=''

   ,'Mplan'

   ,if(Print=1

      ,'WIP'

     

      ,if(SchStart<MonthEnd(today())

        ,'Late to launch'

        ,'To be launched'

       )

    )

)

) '

So the labels along the column heading will be WIP,STOP , LATE TO LAUNCH AND TO BE LAUNCHED.

Is there a way to sort this column heading in a specific order, say Late to launch, M-Plan, To be launched, WIP, Stop ?

Many Thanks

CR

'

1 Solution

Accepted Solutions
dwforest
Specialist II
Specialist II

sort by expression

match([Sub Area], 'LATE TO LAUNCH' ,M-Plan','TO BE LAUNCHED','WIP')

Note that case matters you show both so just make sure it matches what you really have.

View solution in original post

1 Reply
dwforest
Specialist II
Specialist II

sort by expression

match([Sub Area], 'LATE TO LAUNCH' ,M-Plan','TO BE LAUNCHED','WIP')

Note that case matters you show both so just make sure it matches what you really have.