<?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: Monthname in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Monthname/m-p/759328#M1033164</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello curiousfellow. thanks for the update and glad it worked out.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are good to go i suggest closing the thread and marking the helpful posts.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let us know if you have any other questions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Jan 2015 21:31:39 GMT</pubDate>
    <dc:creator>JonnyPoole</dc:creator>
    <dc:date>2015-01-23T21:31:39Z</dc:date>
    <item>
      <title>Monthname</title>
      <link>https://community.qlik.com/t5/QlikView/Monthname/m-p/759320#M1033156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my data there is a number representing the number of the month.&lt;/P&gt;&lt;P&gt;It is possible to select several months.&lt;/P&gt;&lt;P&gt;The highest monthnumber is stored to a variable 'monthnumber'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my report I want the name of the highest month to be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried : date('10-'&amp;amp;($(monthnumber))&amp;amp;'-2000','mmm') and several other expressions using monthname or monthnames.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately nothing works. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't want the year to be displayed.&lt;/P&gt;&lt;P&gt;Pleez help this newbie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 18:41:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthname/m-p/759320#M1033156</guid>
      <dc:creator>curiousfellow</dc:creator>
      <dc:date>2015-01-23T18:41:15Z</dc:date>
    </item>
    <item>
      <title>Re: Monthname</title>
      <link>https://community.qlik.com/t5/QlikView/Monthname/m-p/759321#M1033157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use MonthName() function of Qlikview.&lt;/P&gt;&lt;P&gt;It will be better if you provide a sample.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 18:48:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthname/m-p/759321#M1033157</guid>
      <dc:creator>sujeetsingh</dc:creator>
      <dc:date>2015-01-23T18:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: Monthname</title>
      <link>https://community.qlik.com/t5/QlikView/Monthname/m-p/759322#M1033158</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;Replace the hyphen with a forward slash&lt;/P&gt;&lt;P&gt;month(date('10/' &amp;amp; monthnumber &amp;amp; '/2000'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 18:50:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthname/m-p/759322#M1033158</guid>
      <dc:creator>jduenyas</dc:creator>
      <dc:date>2015-01-23T18:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Monthname</title>
      <link>https://community.qlik.com/t5/QlikView/Monthname/m-p/759323#M1033159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Monthname() functions returns the Year with the month and he does not want to see year.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 18:52:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthname/m-p/759323#M1033159</guid>
      <dc:creator>jduenyas</dc:creator>
      <dc:date>2015-01-23T18:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: Monthname</title>
      <link>https://community.qlik.com/t5/QlikView/Monthname/m-p/759324#M1033160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This will work for you. Replace '10' with the field that provides a month number.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= date(MakeDate(2000,10),'MMM')&amp;nbsp;&amp;nbsp; --&amp;gt;&amp;nbsp;&amp;nbsp; 'Oct'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=date(MakeDate(2000,[MonthNumberField]),'MMM')&amp;nbsp; -&amp;gt;&amp;nbsp;&amp;nbsp; the 3 digit month name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 19:03:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthname/m-p/759324#M1033160</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2015-01-23T19:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Monthname</title>
      <link>https://community.qlik.com/t5/QlikView/Monthname/m-p/759325#M1033161</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;month(date#(Date,'MMM')) as Month&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 19:09:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthname/m-p/759325#M1033161</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-23T19:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Monthname</title>
      <link>https://community.qlik.com/t5/QlikView/Monthname/m-p/759326#M1033162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all of you for your quick reply. I use Jonathans solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 19:51:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthname/m-p/759326#M1033162</guid>
      <dc:creator>curiousfellow</dc:creator>
      <dc:date>2015-01-23T19:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Monthname</title>
      <link>https://community.qlik.com/t5/QlikView/Monthname/m-p/759327#M1033163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For the record, here's another alternative:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=month(date#(monthNumberField,'M'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 20:44:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthname/m-p/759327#M1033163</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-01-23T20:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Monthname</title>
      <link>https://community.qlik.com/t5/QlikView/Monthname/m-p/759328#M1033164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello curiousfellow. thanks for the update and glad it worked out.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are good to go i suggest closing the thread and marking the helpful posts.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let us know if you have any other questions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Jan 2015 21:31:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthname/m-p/759328#M1033164</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2015-01-23T21:31:39Z</dc:date>
    </item>
  </channel>
</rss>

