Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
prees959
Creator II
Creator II

List Box 'Month' Picker.... Hel

Hi, 

I currently have a horizontal Month picker :

Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec | Jan | Feb

 

Is there anyway to set the list box to use the 'Month Initial' and keep the sort order of March - April , eg:

M | A | M | J | J | A | S | O | N | D | J | F  ?

 

Thanks,

 

Phil

Labels (3)
1 Solution

Accepted Solutions
sunny_talwar

May be try this as your expression

Dual(Left(Month, 1), Month)

and sort using the following expression

Pick(Month, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)

image.png

View solution in original post

3 Replies
sunny_talwar

May be try this as your expression

Dual(Left(Month, 1), Month)

and sort using the following expression

Pick(Month, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)

image.png

prees959
Creator II
Creator II
Author

Thanks!!! 
Perfect!

sunny_talwar

Actually change the sort expression to this

Pick(Only({1} Month), 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)