Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Sort Problem

Dear Experts,

How I can sort this table in month order(calender order).  

Rgds,

Priyantha.

1 Solution

Accepted Solutions
mohammadkhatimi
Partner - Specialist
Partner - Specialist

Hie...


Write this expreesion in sort tab


=wildmatch(capitalize(only({1}Month)),'APR','MAY','JUN','JUL','AUG','SEP','OCT','NOV','DEC','JAN','FEB','MAR')



Regards,

MOhammad

View solution in original post

8 Replies
mohammadkhatimi
Partner - Specialist
Partner - Specialist

Hie...


Write this expreesion in sort tab


=wildmatch(capitalize(only({1}Month)),'APR','MAY','JUN','JUL','AUG','SEP','OCT','NOV','DEC','JAN','FEB','MAR')



Regards,

MOhammad

ecolomer
Master II
Master II

In Sort tab, write:

=only({1} match(MONTH, 'APR', 'MAY','JUN','JUL','AUG','SEP','OCT') )

Not applicable
Author

Hi Mohammad,

Really It works............!!!

Thanks lot.

RGDS

Priyantha.

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try to generate Master fiscal calendar and use that Month field in your chart, no need to this manually in all the charts.  This is the best approach.

Check below link for Master calendar generation

Fiscal and Standard Calendar generation

Regards,

Jagan.

Not applicable
Author

Dear Colomer,

Thanks lot for the help.

RGDS,

Priyantha.

satishkurra
Specialist II
Specialist II

Also with the above replies and correct answers try this way from back end

Temp:

LOAD * Inline [

Month

Jan

Feb

Mar

Apr

May

Jun

Jul

Aug

Sep

Oct

Nov

Dec ];

Here load the Month column date from source

Now drop the temp table

Drop Table Temp;

This approach will help in giving good performance instead of loading your expression in Presentation layer

Thanks

Satish

Not applicable
Author

Dear Satish,

Definitely I will try your method.

Rgds,

Priyantha.

Not applicable
Author

Dear Jagan,

Definitely I will try your method.

Rgds,

Priyantha.