<?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 Data modification at Script level in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Data-modification-at-Script-level/m-p/168935#M39919</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;If your monthnames variable is right, use something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;month(makedate(2011,your_month_field)) as MonthName&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;BR /&gt;if you have a year field, use this version&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;month(makedate(your_year_field,yourmonthfield)) as MonthName&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;OR&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Create an INLINE table with the names&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Load * INLINE [ Month_Num, Month_Name&lt;BR /&gt;1, JAN&lt;BR /&gt;2, FEB....];&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;OR use&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;pick(your_month_field, 'JAN','FEB','MAR'.......'DIC')&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;rgds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Jan 2011 19:56:01 GMT</pubDate>
    <dc:creator>hector</dc:creator>
    <dc:date>2011-01-13T19:56:01Z</dc:date>
    <item>
      <title>Data modification at Script level</title>
      <link>https://community.qlik.com/t5/QlikView/Data-modification-at-Script-level/m-p/168934#M39918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am extracting data directly from a Data Warehouse. There is table for Time_Dimension which I am using.&lt;/P&gt;&lt;P&gt;The Time_Dimension data contains months in numeric / integer. For Example: 1, 2, 3,4,.....12.&lt;/P&gt;&lt;P&gt;Now I want to display 1 as JAN , 2 as FEB ........12 as DEC.&lt;/P&gt;&lt;P&gt;Please Advise!!&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jan 2011 19:49:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-modification-at-Script-level/m-p/168934#M39918</guid>
      <dc:creator>hkg_qlik</dc:creator>
      <dc:date>2011-01-13T19:49:06Z</dc:date>
    </item>
    <item>
      <title>Data modification at Script level</title>
      <link>https://community.qlik.com/t5/QlikView/Data-modification-at-Script-level/m-p/168935#M39919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;If your monthnames variable is right, use something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;month(makedate(2011,your_month_field)) as MonthName&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;BR /&gt;if you have a year field, use this version&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;month(makedate(your_year_field,yourmonthfield)) as MonthName&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;OR&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Create an INLINE table with the names&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Load * INLINE [ Month_Num, Month_Name&lt;BR /&gt;1, JAN&lt;BR /&gt;2, FEB....];&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;OR use&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;pick(your_month_field, 'JAN','FEB','MAR'.......'DIC')&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;rgds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Jan 2011 19:56:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Data-modification-at-Script-level/m-p/168935#M39919</guid>
      <dc:creator>hector</dc:creator>
      <dc:date>2011-01-13T19:56:01Z</dc:date>
    </item>
  </channel>
</rss>

