Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
mato32188
Specialist
Specialist

Sort order

Hello,

I have a problem with sorting year-month dimension in chart. Format is 20XX-Jan, 20XX-Feb

Could anybody help to sort it chronologically?


Thanks

ECG line chart is the most important visualization in your life.
1 Solution

Accepted Solutions
ashfaq_haseeb
Champion III
Champion III

Hi use

date(Datefield,'YYYY-MMM')  as your sorting expression


Regards

ASHFAQ

View solution in original post

3 Replies
ashfaq_haseeb
Champion III
Champion III

Hi use

date(Datefield,'YYYY-MMM')  as your sorting expression


Regards

ASHFAQ

mato32188
Specialist
Specialist
Author

It works only when expression is..... date#(Datefield, 'YYYY-MMM'), but thank you very much.

ECG line chart is the most important visualization in your life.
vardhancse
Specialist III
Specialist III

Hi,

In the calendar can u create the inline statements separately for year and month with sort numbers.

LOAD * INLINE [

    Year, Sort_No

    2006, 1

    2007, 2

    2008, 3

    2009, 4

    2010, 5

];

Similarly for month,

LOAD * INLINE [

    Month, Sort_No

    Jan, 1

    Feb, 2

    Mar, 3

];

So that in front end u can join both .