<?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: Convert text month MMM into MM in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003855#M341082</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this in the script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Month(Date#(MonthField, 'MMM')) as MonthField&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where Month is dual and will be both Text and Number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Nov 2015 03:13:38 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2015-11-02T03:13:38Z</dc:date>
    <item>
      <title>Convert text month MMM into MM</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003854#M341081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have a month which are text&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;&lt;P&gt;Feb&lt;/P&gt;&lt;P&gt;Mar&lt;/P&gt;&lt;P&gt;Oct&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Need to convert in to months MM in date format &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2015 03:10:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003854#M341081</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2015-11-02T03:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: Convert text month MMM into MM</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003855#M341082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this in the script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Month(Date#(MonthField, 'MMM')) as MonthField&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where Month is dual and will be both Text and Number.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2015 03:13:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003855#M341082</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-11-02T03:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Convert text month MMM into MM</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003856#M341083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want in MM not in MMM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which is not happening...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2015 03:16:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003856#M341083</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2015-11-02T03:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Convert text month MMM into MM</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003857#M341084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Num(Month(Date#(MonthField, 'MMM'))) as MonthField&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2015 03:20:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003857#M341084</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-11-02T03:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Convert text month MMM into MM</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003858#M341085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Match(MonthField, 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec') as MonthField&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2015 03:22:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003858#M341085</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-11-02T03:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Convert text month MMM into MM</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003859#M341086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have month column separately I will suggest use Mapping load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then&amp;nbsp; use ApplyMap() function to&amp;nbsp; replace Jan with 01,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;BKC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2015 04:06:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003859#M341086</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-02T04:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: Convert text month MMM into MM</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003860#M341087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi Saumya,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Try like this&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAd&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;*,&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Date(Date#(MonthField, 'MMM'), 'MM') as MonthField&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAd&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;*,&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Match(MonthField, &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'&lt;/STRONG&gt;) as MonthField&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM DataSource;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;OR&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;by using Mapping table.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Hope this helps you.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2015 04:10:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003860#M341087</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-11-02T04:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Convert text month MMM into MM</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003861#M341088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try Some thing like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Month(Date(Date#(Field name,'MMM'),'MM')) as Temp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2015 06:46:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1003861#M341088</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-02T06:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Convert text month MMM into MM</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1685354#M450336</link>
      <description>&lt;P&gt;I just had the same problem. num(MonthField,'00') solves the problem within QlikView/Qlik Sense but the problem is that when I export to excel, the entry in the cell is '0' even though it displays '00'. I added the Text() function and that worked. Now it is ok in Qlik Sense and also after excel export. Final syntax is text(num(MonthField,'00'))&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2020 13:00:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-text-month-MMM-into-MM/m-p/1685354#M450336</guid>
      <dc:creator>JohanLind1979</dc:creator>
      <dc:date>2020-03-17T13:00:42Z</dc:date>
    </item>
  </channel>
</rss>

