<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: MonthName - How to sort by January --&amp;gt; December in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588649#M544784</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In load script arrive a new month field like below, and in Sort tab of chart properties -&amp;gt; Number -&amp;gt; Select Ascending/descending based on your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableName:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;Date(DateDimensionName, 'MMMM')&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Apr 2014 04:22:05 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2014-04-17T04:22:05Z</dc:date>
    <item>
      <title>MonthName - How to sort by January --&gt; December</title>
      <link>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588644#M544779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I manually sort the month selection tab to show the order of months the right way. Please view the image below for further clarification: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="MonthProb.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/57469_MonthProb.jpg" /&gt;&lt;/P&gt;&lt;P&gt;Please advise. Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2014 03:56:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588644#M544779</guid>
      <dc:creator />
      <dc:date>2014-04-17T03:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: MonthName - How to sort by January --&gt; December</title>
      <link>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588645#M544780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use sort sequence for that like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load * inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Month, SeqOrder&lt;/P&gt;&lt;P&gt;December, 1&lt;/P&gt;&lt;P&gt;February, 2&lt;/P&gt;&lt;P&gt;January, 3&lt;/P&gt;&lt;P&gt;May, 4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in list box month uncheck all and then select expression and type SeqOrder there &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2014 04:01:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588645#M544780</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-17T04:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: MonthName - How to sort by January --&gt; December</title>
      <link>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588646#M544781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Goto the Sort Tab of the chart or list box. Click on the Expression. Write something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Match(&amp;lt;your month field&amp;gt;,'December','February','January','May)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2014 04:02:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588646#M544781</guid>
      <dc:creator />
      <dc:date>2014-04-17T04:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: MonthName - How to sort by January --&gt; December</title>
      <link>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588647#M544782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to sort the months manually then use match function like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Match(Yourmonthfield,'December','February','January','May')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and type this code in the Expression tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2014 04:08:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588647#M544782</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-17T04:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: MonthName - How to sort by January --&gt; December</title>
      <link>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588648#M544783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to the sort tab, remove all existing sorting and add this "month(date#(Mon,'MMM'))" where "Mon" is the name of your field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jyotsna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2014 04:09:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588648#M544783</guid>
      <dc:creator />
      <dc:date>2014-04-17T04:09:52Z</dc:date>
    </item>
    <item>
      <title>Re: MonthName - How to sort by January --&gt; December</title>
      <link>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588649#M544784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In load script arrive a new month field like below, and in Sort tab of chart properties -&amp;gt; Number -&amp;gt; Select Ascending/descending based on your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableName:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;Date(DateDimensionName, 'MMMM')&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2014 04:22:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588649#M544784</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-04-17T04:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: MonthName - How to sort by January --&gt; December</title>
      <link>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588650#M544785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think doing this script is better option then using Match() in Sort tab, because wherever you are using Month as dimension there you need to give this.&amp;nbsp; It is difficult to handle if you are using Month in multiple charts/listboxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2014 04:33:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588650#M544785</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-04-17T04:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: MonthName - How to sort by January --&gt; December</title>
      <link>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588651#M544786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this expression in Sort tab for sorting the month names as you like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;=&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Only&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({1} &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Match&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Month&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'Janaury','Febraury','March','April','May','June','July','August','September','October','November','December')) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Note: Please change the months in the expression as per your requred sort order.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Hope it heps you..&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Apr 2014 04:34:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MonthName-How-to-sort-by-January-gt-December/m-p/588651#M544786</guid>
      <dc:creator />
      <dc:date>2014-04-17T04:34:46Z</dc:date>
    </item>
  </channel>
</rss>

