Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
Bharathi09
Creator II
Creator II

sorting data

Hi All,

 

I have a straight table in that I have dimension with name 'STATUS' in that 10 columns are there for nine columns the status shown as 'Connected Successfully' and one column shown as 'Failed'

How to show that 'Failed' status at top?

Labels (1)
1 Reply
vinieme12
Champion III
Champion III

you can add a custom sorting order during data load

 

dummy:

Load * inline [

STATUS,so_Status

Failed,1

Connected Successfully,2

];

Then use Sort by Expression for the Dimension STATUS 

=Max(so_Status)

 

 

OR add the below  Sort by Expression without creating a new sort order field

=Wildmatch(STATUS,'Failed','Connected Succesfully')

values will be sorted in the order you add values to the wildmatch() function  ASC

 

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.