<?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: Chart Dimension Convert Month to Words in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517184#M193081</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;Put this wherever you need like in expression, dimension script, but it is better to have this in script like this&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;&amp;nbsp; *,&lt;/P&gt;&lt;P&gt;Pick(Num(MonthDimensionName), 'Jan', 'Feb', 'Mar', ......................, 'Dec') AS MonthName&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use MonthName in Dimension or Expreesion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&amp;nbsp; If not understanding please attach 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>Thu, 24 Oct 2013 03:13:27 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2013-10-24T03:13:27Z</dc:date>
    <item>
      <title>Chart Dimension Convert Month to Words</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517181#M193078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have month in my chart dimension. The data in the database for month is in '01','02','03'....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i convert it to words when it display in chart &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know the following formula. But how could i apply it in this instance?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;upper(date(Today(),'MMMM'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 02:35:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517181#M193078</guid>
      <dc:creator />
      <dc:date>2013-10-24T02:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Dimension Convert Month to Words</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517182#M193079</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 like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Pick(Num(MonthDimensionName), 'Jan', 'Feb', 'Mar', ......................, 'Dec')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&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>Thu, 24 Oct 2013 03:05:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517182#M193079</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-10-24T03:05:18Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Dimension Convert Month to Words</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517183#M193080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where should i type this in?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 03:07:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517183#M193080</guid>
      <dc:creator />
      <dc:date>2013-10-24T03:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Dimension Convert Month to Words</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517184#M193081</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;Put this wherever you need like in expression, dimension script, but it is better to have this in script like this&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;&amp;nbsp; *,&lt;/P&gt;&lt;P&gt;Pick(Num(MonthDimensionName), 'Jan', 'Feb', 'Mar', ......................, 'Dec') AS MonthName&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use MonthName in Dimension or Expreesion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&amp;nbsp; If not understanding please attach 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>Thu, 24 Oct 2013 03:13:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517184#M193081</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-10-24T03:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Dimension Convert Month to Words</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517185#M193082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok.. But how do i sort the month from Jan ... Dec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2013 03:34:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517185#M193082</guid>
      <dc:creator />
      <dc:date>2013-10-24T03:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Dimension Convert Month to Words</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517186#M193083</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;Then try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableName:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *,&lt;/P&gt;&lt;P&gt;Dual(Pick(Num(MonthDimensionName), 'Jan', 'Feb', 'Mar', ......................, 'Dec'), Num(MonthDimensionName)) AS MonthName&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in Sort tab select Numeric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableName:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *,&lt;/P&gt;&lt;P&gt;Date(MakeDate(2013, Num(MonthDimensionName)), 'MMM') AS MonthName&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;Now in Sort tab select Numeric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&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>Thu, 24 Oct 2013 03:40:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517186#M193083</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-10-24T03:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: Chart Dimension Convert Month to Words</title>
      <link>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517187#M193084</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;Please close the discussion if your issue is solved by giving the Correct and Helpful answers to the posts.&amp;nbsp; It helps others to find the solution for similar issues.&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>Thu, 24 Oct 2013 07:52:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Chart-Dimension-Convert-Month-to-Words/m-p/517187#M193084</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-10-24T07:52:49Z</dc:date>
    </item>
  </channel>
</rss>

