<?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: How to create a month field from existing date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-create-a-month-field-from-existing-date/m-p/1261374#M397811</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This worked,but how would I add the year to it? like June 2017&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Mar 2017 18:03:34 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-03-27T18:03:34Z</dc:date>
    <item>
      <title>How to create a month field from existing date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-month-field-from-existing-date/m-p/1261371#M397808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I set a month value from an existing date value? My data has dates listed as "09 June 2011 11:38:29 EST" All I want is to create a field that would only have the month- "June"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 14:19:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-month-field-from-existing-date/m-p/1261371#M397808</guid>
      <dc:creator />
      <dc:date>2017-03-22T14:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a month field from existing date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-month-field-from-existing-date/m-p/1261372#M397809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like&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; TimestampField,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Text(Date(TimestampField,'MMMM')) as MonthName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to ensure that your Timestamp is correctly read in with a numeric representation, please have a look at&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2622"&gt;Get the Dates Right&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 14:25:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-month-field-from-existing-date/m-p/1261372#M397809</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-03-22T14:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a month field from existing date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-month-field-from-existing-date/m-p/1261373#M397810</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;May be use this, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SubField(TimeStamp,' ',2)&amp;nbsp; as Month&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you require complete calendar table means, go with stefans suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Mar 2017 15:14:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-month-field-from-existing-date/m-p/1261373#M397810</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2017-03-22T15:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a month field from existing date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-month-field-from-existing-date/m-p/1261374#M397811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This worked,but how would I add the year to it? like June 2017&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 18:03:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-month-field-from-existing-date/m-p/1261374#M397811</guid>
      <dc:creator />
      <dc:date>2017-03-27T18:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a month field from existing date</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-create-a-month-field-from-existing-date/m-p/1261375#M397812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(Monthstart(TimestampField),'MMMM YYYY') as MonthYear,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Mar 2017 18:13:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-create-a-month-field-from-existing-date/m-p/1261375#M397812</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2017-03-27T18:13:56Z</dc:date>
    </item>
  </channel>
</rss>

