Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Sorting a column

Hi,

How do I sort the column with the blue arrow (preference to descending):

sorting.PNG

1 Solution

Accepted Solutions
sibin_jacob
Creator III
Creator III

Go to Sorting tab.

Then Select Country -> the select sort by expression option.

For example your expression is Sum(Sales), then write the below expression in sorting tab.

I am assuming you need to sort table order based on Review Type Null

Sum({<Review_Type-={"*"}>} Sales)


Then select Decending Order.


If you need to sort based on Review Type 'No Owner', the sort tab expression will be

Sum({<Review_Type={'No Owner'}>} Sales)


Dynamic sorting is not available in Pivot table, which is available only in Straight table.

View solution in original post

2 Replies
sibin_jacob
Creator III
Creator III

Go to Sorting tab.

Then Select Country -> the select sort by expression option.

For example your expression is Sum(Sales), then write the below expression in sorting tab.

I am assuming you need to sort table order based on Review Type Null

Sum({<Review_Type-={"*"}>} Sales)


Then select Decending Order.


If you need to sort based on Review Type 'No Owner', the sort tab expression will be

Sum({<Review_Type={'No Owner'}>} Sales)


Dynamic sorting is not available in Pivot table, which is available only in Straight table.

Anonymous
Not applicable
Author

It works, Tnx!