<?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 Problem with months in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-months/m-p/519282#M193937</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, i have the following problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I have a field month in QV like 1.2.3.4.5...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I want them appearing like "Jan, Feb, Mar".. but in order.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I mean, i put something like this:&lt;/P&gt;&lt;P&gt;If month=1, Jan, If month=2, Feb....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But dont know how to order them... because when i select anything else, they get mixed. "Mar,Feb,Jun,Apr"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any solution??&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Aug 2013 13:52:58 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-08-22T13:52:58Z</dc:date>
    <item>
      <title>Problem with months</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-months/m-p/519282#M193937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, i have the following problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I have a field month in QV like 1.2.3.4.5...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I want them appearing like "Jan, Feb, Mar".. but in order.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I mean, i put something like this:&lt;/P&gt;&lt;P&gt;If month=1, Jan, If month=2, Feb....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But dont know how to order them... because when i select anything else, they get mixed. "Mar,Feb,Jun,Apr"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any solution??&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Aug 2013 13:52:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-months/m-p/519282#M193937</guid>
      <dc:creator />
      <dc:date>2013-08-22T13:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with months</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-months/m-p/519283#M193938</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 with Mapping and ApplyMap concept to achieve this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MapTable:&lt;/P&gt;&lt;P&gt;Mapping Load * inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Month, MonthName&lt;/P&gt;&lt;P&gt;1,Jan&lt;/P&gt;&lt;P&gt;2,Feb&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;!2,Dec&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load ApplyMap('MapTable',Month) as Month, * from tablename;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Aug 2013 13:58:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-months/m-p/519283#M193938</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2013-08-22T13:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with months</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-months/m-p/519284#M193939</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;here is a way to get the correct month value, which will have the right sorting order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MonthNum:&lt;/P&gt;&lt;P&gt;LOAD * INLINE &lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;monthNum&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; monthNum,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; month(MakeDate(2013, monthNum)) as Month&lt;/P&gt;&lt;P&gt;RESIDENT&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthNum;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Aug 2013 14:05:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-months/m-p/519284#M193939</guid>
      <dc:creator>Brice-SACCUCCI</dc:creator>
      <dc:date>2013-08-22T14:05:25Z</dc:date>
    </item>
  </channel>
</rss>

