<?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: Converting a month.num to month.text in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Converting-a-month-num-to-month-text/m-p/557909#M1148819</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent, that worked perfectly.&amp;nbsp; My thoughts were heading in the right direction but weren't concluding in anything as efficient as this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks alot for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Jul 2013 08:15:18 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-07-10T08:15:18Z</dc:date>
    <item>
      <title>Converting a month.num to month.text</title>
      <link>https://community.qlik.com/t5/QlikView/Converting-a-month-num-to-month-text/m-p/557907#M1148817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to load a date field which is in the excel file as "period" in the following concatenated format YYYYMM eg. 201306&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've split this into Month and Year as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;left&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;PERIOD&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, 4) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"Year"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;right&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;PERIOD&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, 2) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;AS&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;, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;How&amp;nbsp; do I convert the numeric month into a text month within the load statement&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;does a switch case type statement work or is there a function to convert this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give examples!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jul 2013 17:07:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Converting-a-month-num-to-month-text/m-p/557907#M1148817</guid>
      <dc:creator />
      <dc:date>2013-07-09T17:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Converting a month.num to month.text</title>
      <link>https://community.qlik.com/t5/QlikView/Converting-a-month-num-to-month-text/m-p/557908#M1148818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe try something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Year(Date#(PERIOD, 'YYYYMM')) as "Year"&lt;/P&gt;&lt;P&gt;e.g. for 201306 will return "2013"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Month(Date#(PERIOD, 'YYYYMM')) as "Month"&lt;/P&gt;&lt;P&gt;e.g. for 201306 will return "Jun"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jul 2013 17:25:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Converting-a-month-num-to-month-text/m-p/557908#M1148818</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2013-07-09T17:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Converting a month.num to month.text</title>
      <link>https://community.qlik.com/t5/QlikView/Converting-a-month-num-to-month-text/m-p/557909#M1148819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent, that worked perfectly.&amp;nbsp; My thoughts were heading in the right direction but weren't concluding in anything as efficient as this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks alot for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jul 2013 08:15:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Converting-a-month-num-to-month-text/m-p/557909#M1148819</guid>
      <dc:creator />
      <dc:date>2013-07-10T08:15:18Z</dc:date>
    </item>
  </channel>
</rss>

