<?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: Create Date Field Using Numeric Year and Alpha Month Name in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Create-Date-Field-Using-Numeric-Year-and-Alpha-Month-Name/m-p/1053340#M353333</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amazing. Thank you per usual. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Feb 2016 20:32:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-02-29T20:32:36Z</dc:date>
    <item>
      <title>Create Date Field Using Numeric Year and Alpha Month Name</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Date-Field-Using-Numeric-Year-and-Alpha-Month-Name/m-p/1053337#M353330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Inputs &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Month: Apr&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Year: 2015&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #00ff00;"&gt;Desired output: 201504&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: underline;"&gt;Current syntax:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Num(Year &amp;amp; num(month(date#(Month,'MMM'))), '000000') as [Fiscal Period]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #ff0000;"&gt;Current output: 020154&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm very close but I cant seem to figure out where I am going wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 20:28:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Date-Field-Using-Numeric-Year-and-Alpha-Month-Name/m-p/1053337#M353330</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-29T20:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: Create Date Field Using Numeric Year and Alpha Month Name</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Date-Field-Using-Numeric-Year-and-Alpha-Month-Name/m-p/1053338#M353331</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&gt;Date(MakeDate(Year, Month(Date#(Month, 'MMM')), 1), 'YYYYMM') as [Fiscal Period]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Date(Date#(Year &amp;amp; '-' &amp;amp; Month, 'YYYY-MMM'), 'YYYYMM') as [Fiscal Period]&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 20:30:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Date-Field-Using-Numeric-Year-and-Alpha-Month-Name/m-p/1053338#M353331</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-29T20:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: Create Date Field Using Numeric Year and Alpha Month Name</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Date-Field-Using-Numeric-Year-and-Alpha-Month-Name/m-p/1053339#M353332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Year &amp;amp; num(month(date#(Month,'MMM')), '00') as [Fiscal Period]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;Date( Date#( Year &amp;amp; Month,'YYYYMMM'), 'YYYYMM') as [Fiscal Period]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12pt;"&gt;note that the underlying numeric value is differenct in the second approach (it's the monthstart date value)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 20:31:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Date-Field-Using-Numeric-Year-and-Alpha-Month-Name/m-p/1053339#M353332</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-02-29T20:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create Date Field Using Numeric Year and Alpha Month Name</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Date-Field-Using-Numeric-Year-and-Alpha-Month-Name/m-p/1053340#M353333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amazing. Thank you per usual. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 20:32:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Date-Field-Using-Numeric-Year-and-Alpha-Month-Name/m-p/1053340#M353333</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-29T20:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: Create Date Field Using Numeric Year and Alpha Month Name</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Date-Field-Using-Numeric-Year-and-Alpha-Month-Name/m-p/1053341#M353334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not a problem &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 20:33:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Date-Field-Using-Numeric-Year-and-Alpha-Month-Name/m-p/1053341#M353334</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-29T20:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create Date Field Using Numeric Year and Alpha Month Name</title>
      <link>https://community.qlik.com/t5/QlikView/Create-Date-Field-Using-Numeric-Year-and-Alpha-Month-Name/m-p/1053342#M353335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Date(Date#(Year &amp;amp; Month, 'YYYYMMM'), 'YYYYMM')&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as .......&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Feb 2016 20:35:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Create-Date-Field-Using-Numeric-Year-and-Alpha-Month-Name/m-p/1053342#M353335</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2016-02-29T20:35:08Z</dc:date>
    </item>
  </channel>
</rss>

