<?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: Sorting of Months in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76490#M787893</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Only({YourMonthField = {"&amp;gt;=Nov&amp;lt;=Oct"}}YourMonthField)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Feb 2018 21:18:20 GMT</pubDate>
    <dc:creator>zebhashmi</dc:creator>
    <dc:date>2018-02-23T21:18:20Z</dc:date>
    <item>
      <title>Sorting of Months</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76485#M787885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;Hi!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;Am new to QlikView and have recently started exploring the tool. It's mostly on trial and error method.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;Am working on a Line Chart where am trying to sort Month by arranging them in the following order; Nov, Dec, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;So far I haven't had any luck in achieving the desired result. Please assist.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;"&gt;Dev&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76485#M787885</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting of Months</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76486#M787887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Only({1} Date#(MonthField, 'MMM'))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 17:22:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76486#M787887</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-02-23T17:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting of Months</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76487#M787890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One way is to create sort order in script before any other script is executed for a dimension field, like this -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Load Dual(Month,RowNo()) as Month inline [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Month&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Feb,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Mar,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Apr,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;May,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Jun,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Jul,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Aug,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Sep,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Nov,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Dec ];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;TablefromScript:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Load *, Month(Date) as Month inline [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Date, Value&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;01/01/2018, 2000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;03/01/2018, 4000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;09/01/2018, 6000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;02/01/2008, 8000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;04/01/2008, 1000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 17:40:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76487#M787890</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2018-02-23T17:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting of Months</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76488#M787891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;Thanks for responding to my query.&lt;/P&gt;&lt;P&gt;I tried the expression suggested and ended up as below;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For me, fiscal year starts with Nov and ends with Oct.&lt;/P&gt;&lt;P&gt;I need the months to be arranged in similar order.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="ScreenHunter_01 Feb. 23 23.25.jpg" class="jive-image image-1" src="/legacyfs/online/194391_ScreenHunter_01 Feb. 23 23.25.jpg" style="height: 186px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 17:59:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76488#M787891</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-23T17:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting of Months</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76489#M787892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then I suggest fixing it in the script using a Fiscal Year Master calendar&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-7094"&gt;Fiscal and Standard Calendar generation&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 18:18:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76489#M787892</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-02-23T18:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting of Months</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76490#M787893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Only({YourMonthField = {"&amp;gt;=Nov&amp;lt;=Oct"}}YourMonthField)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 21:18:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76490#M787893</guid>
      <dc:creator>zebhashmi</dc:creator>
      <dc:date>2018-02-23T21:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting of Months</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76491#M787894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Hashim! Am retaining an error with the expression you have suggested.&lt;/P&gt;&lt;P&gt;Will it be possible for you to send a .qvd file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 21:26:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76491#M787894</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-23T21:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting of Months</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76492#M787895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunny! I'll give it a try.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 21:27:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76492#M787895</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-23T21:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting of Months</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76493#M787896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Digvijay's solution is perfect, just a clarification:&lt;/P&gt;&lt;P&gt;1. You need to load the first table BEFORE you load your Month field.&lt;/P&gt;&lt;P&gt;2. The Month field in this table must have the same name as in calendar/fact table.&lt;/P&gt;&lt;P&gt;3. You can safely drop the first table at the end of script.&lt;/P&gt;&lt;P&gt;4. When creating chart go to sort settings for the month field and select "load order"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Juraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 21:31:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76493#M787896</guid>
      <dc:creator>juraj_misina</dc:creator>
      <dc:date>2018-02-23T21:31:06Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting of Months</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76494#M787897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yup, You explained it perfectly.&amp;nbsp; If you feel you got what is needed, you may close this thread by marking correct/helpful answers. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 21:36:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76494#M787897</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2018-02-23T21:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting of Months</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76495#M787898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, both. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Feb 2018 21:41:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-of-Months/m-p/76495#M787898</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-23T21:41:25Z</dc:date>
    </item>
  </channel>
</rss>

