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

Change Month Dimension Sort Order in Chart

Hi All,

I have a line chart where the dimension is Month. Naturally, the sort order of this is Jan-Dec.

However, I'd like to change the sort order so that the months run from Sep-Aug. Is this possible?

The reason I'd like to do this is because my fiscal year runs from Sep-Aug - in the script, year is defined as right(yearname(DateField,0,9),4)

Any help greatly appreciated!

1 Solution

Accepted Solutions
tresesco
MVP
MVP

try this:

Sort by expression (ascending):

Expression like: match(MonthField, 'Sep', 'Oct', 'Nov', 'Dec',....,'Aug')

View solution in original post

2 Replies
tresesco
MVP
MVP

try this:

Sort by expression (ascending):

Expression like: match(MonthField, 'Sep', 'Oct', 'Nov', 'Dec',....,'Aug')

danielle_v
Creator
Creator
Author

Perfect, many thanks for your help!!