Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Custom Ordering

INFORMATION IN THIS FILE IS FICTITOUS

Attached is a .qvw FILE

This is a pivot table.  How can I custom order MGMM, PPGM, PRGM (Within Job COLUMN) to display in the following order:

PPGM     PRGM     MGMM

1 Solution

Accepted Solutions
jerem1234
Specialist II
Specialist II

You can use this expression for sorting on your Job dimension under the Sort tab:

match(Job, 'PPGM', 'PRGM', 'MGMM')

Hope this helps!

View solution in original post

9 Replies
jerem1234
Specialist II
Specialist II

You can use this expression for sorting on your Job dimension under the Sort tab:

match(Job, 'PPGM', 'PRGM', 'MGMM')

Hope this helps!

MK_QSL
MVP
MVP

Go to sort tab

Select Job

Under expression type below and select Ascending

Match(Job,'PPGM','PRGM','MGMM')

Nicole-Smith

alexandros17
Partner - Champion III
Partner - Champion III

In the sort tab click Job, uncheck ordering by text and check expression (set ascending) and write in it:

if(Job='PPGM',1, if(Job='PRGM',2,3))

Hope it helps

Not applicable
Author

Thank you for taking time respond.  this option works too.

Not applicable
Author

Thank you for taking time to respond. This option works too.

Not applicable
Author

Thank you for taking time to respond, this option works

Not applicable
Author

Thank you for taking time to respond this option works.

Not applicable
Author

yes, match function is very helpful when you have specific sort order for limited no. of field values