<?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: Retrieving Month and Year in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Retrieving-Month-and-Year/m-p/618607#M227953</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Below in your Script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(Date#(Left(11061311012,6),'DDMMYY')) as Date,&lt;/P&gt;&lt;P&gt;Month(Date#(Left(11061311012,6),'DDMMYY')) as Month,&lt;/P&gt;&lt;P&gt;Year(Date#(Left(11061311012,6),'DDMMYY')) as Year,&lt;/P&gt;&lt;P&gt;Date(Date#(Left(11061311012,6),'DDMMYY'),'MMMM-YYYY') as Month-Year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can replace 11061311012 with your DateField&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Apr 2014 07:17:14 GMT</pubDate>
    <dc:creator>MK_QSL</dc:creator>
    <dc:date>2014-04-25T07:17:14Z</dc:date>
    <item>
      <title>Retrieving Month and Year</title>
      <link>https://community.qlik.com/t5/QlikView/Retrieving-Month-and-Year/m-p/618605#M227951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I Have one Serial number Like &lt;STRONG&gt;11061311012, &lt;/STRONG&gt;the first six digits are date field. I am retrieving the those six digits means 110613 i.e date. I am using this field how can i retrieve the month and year like Jun-2013.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2014 06:57:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Retrieving-Month-and-Year/m-p/618605#M227951</guid>
      <dc:creator />
      <dc:date>2014-04-25T06:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: Retrieving Month and Year</title>
      <link>https://community.qlik.com/t5/QlikView/Retrieving-Month-and-Year/m-p/618606#M227952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;month(date#('110613','DDMMYY') )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;resp. the year() function. (Edit: Or any other Date functions from the Help, like Monthname() )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2014 07:00:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Retrieving-Month-and-Year/m-p/618606#M227952</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2014-04-25T07:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Retrieving Month and Year</title>
      <link>https://community.qlik.com/t5/QlikView/Retrieving-Month-and-Year/m-p/618607#M227953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Below in your Script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date(Date#(Left(11061311012,6),'DDMMYY')) as Date,&lt;/P&gt;&lt;P&gt;Month(Date#(Left(11061311012,6),'DDMMYY')) as Month,&lt;/P&gt;&lt;P&gt;Year(Date#(Left(11061311012,6),'DDMMYY')) as Year,&lt;/P&gt;&lt;P&gt;Date(Date#(Left(11061311012,6),'DDMMYY'),'MMMM-YYYY') as Month-Year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can replace 11061311012 with your DateField&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2014 07:17:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Retrieving-Month-and-Year/m-p/618607#M227953</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-04-25T07:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: Retrieving Month and Year</title>
      <link>https://community.qlik.com/t5/QlikView/Retrieving-Month-and-Year/m-p/618608#M227954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this&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;=Date(date#(Left('&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;11061311012&lt;/STRONG&gt;'),'DDMMYY'), 'MMM-YYYY' )&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;Or &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;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=Date(date#(Left(DimensionName&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;),'DDMMYY'), 'MMM-YYYY' )&lt;/SPAN&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;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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2014 07:24:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Retrieving-Month-and-Year/m-p/618608#M227954</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-04-25T07:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Retrieving Month and Year</title>
      <link>https://community.qlik.com/t5/QlikView/Retrieving-Month-and-Year/m-p/618609#M227955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can write like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Date(Date#(left(YourDateDimension,6),'DDMMYY'),'MMM-YYYY')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=MonthName(Date#(left(Date,6),'DDMMYY'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2014 07:50:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Retrieving-Month-and-Year/m-p/618609#M227955</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-25T07:50:11Z</dc:date>
    </item>
  </channel>
</rss>

