Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Sort dimension Month using my predefined order

Hi,

How can I sort my dimension Month (X Axe) in my predefined order (Jan, Feb, Mar, Apr, May, Jun, Jul etc...)

Many Thanks.

Jerome.

1 Solution

Accepted Solutions
ajaykumar1
Creator III
Creator III

Hi,

Table :

Month,

---

---

from qvd1;

Load * inline [

Month,Order

Jan,1

Feb,2

--

--

Dec,12

];

Then go to the Sort option and select the month dimension and in the expression you can put the field name as ORDER and play with ascending/desneding.

Regards,

Ajay

View solution in original post

5 Replies
sushil353
Master II
Master II

Hi

check out this : Sorting in qlikview

HTH

Sushil

ajaykumar1
Creator III
Creator III

Hi,

Table :

Month,

---

---

from qvd1;

Load * inline [

Month,Order

Jan,1

Feb,2

--

--

Dec,12

];

Then go to the Sort option and select the month dimension and in the expression you can put the field name as ORDER and play with ascending/desneding.

Regards,

Ajay

Not applicable
Author

Properties-->Sort--> Numeric Value--> Ascending

PrashantSangle

Hi,

Go to Sort tab->Expression->write Expression like

wildmatch(month,'jan','feb','mar','apr','may','jun','jul','aug','sep','oct','nov','dec')

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Not applicable
Author

Thanks!