<?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 by Month with 3 characters in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493140#M184462</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the chart properties go to the sort tab.&amp;nbsp; Choose month and sort by the following expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Match(Month, 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov' , 'Dec')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Oct 2013 15:48:55 GMT</pubDate>
    <dc:creator>jpapador</dc:creator>
    <dc:date>2013-10-18T15:48:55Z</dc:date>
    <item>
      <title>Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493139#M184461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fiscal Year is from October through September.&lt;/P&gt;&lt;P&gt;I rearranged the order of the month names with&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 14pt;"&gt;MonthNames&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 14pt;"&gt;='Oct;Nov;Dec;Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep'; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;However, I can't get them ordered on the X axis properly.&amp;nbsp; The order is in reverse.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I tried the Dort Dimensions but could not get the sort order to change. . . &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Any suggestions??&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 15:46:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493139#M184461</guid>
      <dc:creator />
      <dc:date>2013-10-18T15:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493140#M184462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the chart properties go to the sort tab.&amp;nbsp; Choose month and sort by the following expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Match(Month, 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov' , 'Dec')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 15:48:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493140#M184462</guid>
      <dc:creator>jpapador</dc:creator>
      <dc:date>2013-10-18T15:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493141#M184463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can u attach the example?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 15:53:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493141#M184463</guid>
      <dc:creator />
      <dc:date>2013-10-18T15:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493142#M184464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thomas,&lt;/P&gt;&lt;P&gt;It's not a good idea to use MonthNames in this way.&amp;nbsp; I suspect that it simply renames Jan to Oct, Feb to Nov,&amp;nbsp; etc..&lt;/P&gt;&lt;P&gt;You rather have to create fiscal year which starts in October and ends in September.&lt;/P&gt;&lt;P&gt;As for the sorting, looks like you're using "descending" (?)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit:&amp;nbsp; example how to create month correctly:&lt;/P&gt;&lt;P&gt;dual(month(DateID), if(month(DateID)&amp;gt;=10, month(DateID)-9, month(DateID)+3)) as FiscalMonth&lt;/P&gt;&lt;P&gt;It will have Oct as 1, Sep as 12 when you sort by number&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 16:00:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493142#M184464</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-18T16:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493143#M184465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;didn't work. . . thanks for the suggestion though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 16:05:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493143#M184465</guid>
      <dc:creator />
      <dc:date>2013-10-18T16:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493144#M184466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorting is tried both ways, no change, though the order is correct, just backwards. . . .&lt;/P&gt;&lt;P&gt;How do I create a fiscal year which starts in October and ends in sep?&amp;nbsp; do tell!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the suggestion&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 16:07:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493144#M184466</guid>
      <dc:creator />
      <dc:date>2013-10-18T16:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493145#M184467</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;Try using like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Month, SortOrder&lt;/P&gt;&lt;P&gt;Oct,1&lt;/P&gt;&lt;P&gt;Nov,2&lt;/P&gt;&lt;P&gt;Dec,3&lt;/P&gt;&lt;P&gt;Jan,4&lt;/P&gt;&lt;P&gt;'&lt;/P&gt;&lt;P&gt;'&lt;/P&gt;&lt;P&gt;'&lt;/P&gt;&lt;P&gt;'&lt;/P&gt;&lt;P&gt;Aug,12 ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use SortOrder in Properties -&amp;gt; Sort -&amp;gt; Expression -&amp;gt; =SortOrder select Ascending/Descending as required.&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>Fri, 18 Oct 2013 16:09:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493145#M184467</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-10-18T16:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493146#M184468</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;or try this in chart &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Properties -&amp;gt; Sort&lt;/SPAN&gt;-&amp;gt; Expression &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;=Match(Month, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt; 'Oct', 'Nov' , 'Dec', &lt;/SPAN&gt; 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Hope this helps you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;Jagan.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 16:11:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493146#M184468</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-10-18T16:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493147#M184469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just edited my post with the example for the fiscal months&lt;/P&gt;&lt;P&gt;Jagan's way is usable as well, except you get an additonal filed (wich I prefer to avoid)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 16:12:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493147#M184469</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-18T16:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493148#M184470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;all great suggestions, so far no go on any of them. . &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 16:28:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493148#M184470</guid>
      <dc:creator />
      <dc:date>2013-10-18T16:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493149#M184471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;@&lt;A _jive_internal="true" data-avatarid="-1" data-userid="23109" data-username="jagan" href="https://community.qlik.com/people/jagan"&gt;Jagan Mohan&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This suggestion appears to be the best implementation workaround.&amp;nbsp; however, I can't get this to override the monthly sort, even when unchecked for sorting. . . not sure why. . .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system data is stored YYYYMM, and that works, just doesn't present well, but maybe then I do the inline load of 201301, Oct&lt;/P&gt;&lt;P&gt;201302, Nov&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me give that a try. . . thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 16:30:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493149#M184471</guid>
      <dc:creator />
      <dc:date>2013-10-18T16:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493150#M184472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13821138521925823" jivemacro_uid="_13821138521925823"&gt;
&lt;P&gt;load&lt;/P&gt;
&lt;P&gt;&amp;nbsp; *,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; dual(&lt;/P&gt;
&lt;P&gt;&amp;nbsp; date(Data,'MMM'),&lt;/P&gt;
&lt;P&gt;&amp;nbsp; AddMonths(Data,-3)&amp;nbsp; // Trick...&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ) as FiscalMonth;&lt;/P&gt;
&lt;P&gt;load&lt;/P&gt;
&lt;P&gt;date(addmonths(MonthStart(Today()),-RecNo())) as Data&lt;/P&gt;
&lt;P&gt;autogenerate 24; // generating a small calendar&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capturar.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/47827_Capturar.PNG.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 16:31:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493150#M184472</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-10-18T16:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493151#M184473</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;Can you attach some sample file.&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>Fri, 18 Oct 2013 16:33:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493151#M184473</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-10-18T16:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493152#M184474</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is because you never tried my suggestion &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;First, you have to have a calendar.&amp;nbsp; It is needed for many purposes.&lt;/P&gt;&lt;P&gt;Second, if you use fiscal year, make sure it is reflected in the calendar.&lt;/P&gt;&lt;P&gt;Third - see attached example.&amp;nbsp; Notice that the FiscalMonthName list box is sorted as you want it.&amp;nbsp; I use a variable FisclMoShift so most fiscal year rules are satisfied by simply entering the shift and reloading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 17:00:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493152#M184474</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-18T17:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493153#M184475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Gregorian calendar does not correlate 100% with the fiscal calendar by day.&amp;nbsp; There are January and March days in Fiscal February, September days in fiscal october, etc,&amp;nbsp; . . .&amp;nbsp; so that's why I can't do a direct date conversion. . . The data is already converted to the fiscal month and the individual day is not brought in. . .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry to have ignored you for so long. . .&amp;nbsp; &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, 18 Oct 2013 17:22:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493153#M184475</guid>
      <dc:creator />
      <dc:date>2013-10-18T17:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493154#M184476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/people/cleveranjos"&gt;cleveranjos&lt;/A&gt; WOW! more programming than I expected, though I am greatly appreciative.&amp;nbsp; though it will take me awhile to understand what you wrote and how to use it. . . only worked with this software for about a week on my own. .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 17:27:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493154#M184476</guid>
      <dc:creator />
      <dc:date>2013-10-18T17:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493155#M184477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you already have a calendar you only need the "dual" function.&lt;/P&gt;&lt;P&gt;That was an example&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 17:36:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493155#M184477</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-10-18T17:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting by Month with 3 characters</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493156#M184478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;&lt;STRONG&gt;Jagan Mohan&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;Thank you! I got it to work. . .&amp;nbsp; I was getting confused between function names and filed/column names, and now I am good!&amp;nbsp; I just had to think about it a bit more, and all is fine!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="j-post-author"&gt;thank you!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Oct 2013 18:01:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-by-Month-with-3-characters/m-p/493156#M184478</guid>
      <dc:creator />
      <dc:date>2013-10-18T18:01:26Z</dc:date>
    </item>
  </channel>
</rss>

