<?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 I got a problem with the command 'month' in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694442#M251118</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got a problem with the command 'Month' it returns a name and I need integer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anybody help me?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Sep 2014 22:27:42 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-09-02T22:27:42Z</dc:date>
    <item>
      <title>I got a problem with the command 'month'</title>
      <link>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694442#M251118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got a problem with the command 'Month' it returns a name and I need integer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anybody help me?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 22:27:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694442#M251118</guid>
      <dc:creator />
      <dc:date>2014-09-02T22:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: I got a problem with the command 'month'</title>
      <link>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694443#M251119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Num(Month(Yourfield))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 22:40:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694443#M251119</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-09-02T22:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: I got a problem with the command 'month'</title>
      <link>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694444#M251120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use&lt;/P&gt;&lt;P&gt;NUM(MONTH(FIELD)) &lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Date(FIELD,'MM') -- Assuming FIELD format is in 01/01/2014&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 00:03:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694444#M251120</guid>
      <dc:creator>phaneendra_kunc</dc:creator>
      <dc:date>2014-09-03T00:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: I got a problem with the command 'month'</title>
      <link>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694445#M251121</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;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Month(Yourfield) * 1 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;also returns numeric month, since month is Dual type.&amp;nbsp; By default it will return string month, if you require as number then you have to convert by using Num()&amp;nbsp; or Date(FieldName, 'M') or by multiplying with 1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Hope this helps you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Jagan.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 01:48:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694445#M251121</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-09-03T01:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: I got a problem with the command 'month'</title>
      <link>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694446#M251122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the Month you have some functions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Month(Date) for the name of month&lt;/P&gt;&lt;P&gt;num(Month(Date) for the number of month&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 04:02:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694446#M251122</guid>
      <dc:creator>ecolomer</dc:creator>
      <dc:date>2014-09-03T04:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: I got a problem with the command 'month'</title>
      <link>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694447#M251123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot Marco.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 16:17:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694447#M251123</guid>
      <dc:creator />
      <dc:date>2014-09-03T16:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: I got a problem with the command 'month'</title>
      <link>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694448#M251124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you're welcome&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please close this thread if you don't have further questions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 17:01:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/I-got-a-problem-with-the-command-month/m-p/694448#M251124</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-09-03T17:01:23Z</dc:date>
    </item>
  </channel>
</rss>

