<?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 get quarter start month in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/get-quarter-start-month/m-p/355758#M132040</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i get the first month of a quarter + it's year from the following information:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From 2011-Q1 i want to get 201101&lt;/P&gt;&lt;P&gt;from 2011-Q2 i want to get 201104&lt;/P&gt;&lt;P&gt;etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Mar 2012 08:41:40 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-03-16T08:41:40Z</dc:date>
    <item>
      <title>get quarter start month</title>
      <link>https://community.qlik.com/t5/QlikView/get-quarter-start-month/m-p/355758#M132040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i get the first month of a quarter + it's year from the following information:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From 2011-Q1 i want to get 201101&lt;/P&gt;&lt;P&gt;from 2011-Q2 i want to get 201104&lt;/P&gt;&lt;P&gt;etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2012 08:41:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/get-quarter-start-month/m-p/355758#M132040</guid>
      <dc:creator />
      <dc:date>2012-03-16T08:41:40Z</dc:date>
    </item>
    <item>
      <title>get quarter start month</title>
      <link>https://community.qlik.com/t5/QlikView/get-quarter-start-month/m-p/355759#M132041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so, I don't think this is a DATE field, so you'll need to do it with code. IF your field is a DATE field, you can you the function QuarterStart. In your example do:&lt;/P&gt;&lt;P&gt;Let's suppose the field that contains the value "2011-Q1" is called DATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left(DATE,4) (this will give you 2011)&lt;/P&gt;&lt;P&gt;Then you can concatenate with '&amp;amp;' symbol.&lt;/P&gt;&lt;P&gt;=left(DATE,4)&amp;amp;IF(RIGHT(DATE,2)='Q1',01, IF(RIGHT(DATE,2)='Q2',04,IF(RIGHT(DATE,2)='Q3',07,10)))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2012 08:52:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/get-quarter-start-month/m-p/355759#M132041</guid>
      <dc:creator>jvitantonio</dc:creator>
      <dc:date>2012-03-16T08:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: get quarter start month</title>
      <link>https://community.qlik.com/t5/QlikView/get-quarter-start-month/m-p/355760#M132042</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;&amp;nbsp;&amp;nbsp; Have a look at the application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2012 08:53:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/get-quarter-start-month/m-p/355760#M132042</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2012-03-16T08:53:12Z</dc:date>
    </item>
    <item>
      <title>get quarter start month</title>
      <link>https://community.qlik.com/t5/QlikView/get-quarter-start-month/m-p/355761#M132043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where do you want to do this ?&lt;/P&gt;&lt;P&gt;In the script or in expression ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think there is many way to get your result, there is a simple i think :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have Quarters as a dimension, an expression like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;min(MonthName)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will give you good results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you give us more details or exemple of what you want to do ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2012 08:56:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/get-quarter-start-month/m-p/355761#M132043</guid>
      <dc:creator>christophebrault</dc:creator>
      <dc:date>2012-03-16T08:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: get quarter start month</title>
      <link>https://community.qlik.com/t5/QlikView/get-quarter-start-month/m-p/355762#M132044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Check with this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Left('2011-Q1',4)&amp;amp;Num(((Right('2011-Q1',1)-1)*3)+1,'00')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If you want to make it as date then use like below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date#(Left('2011-Q1',4)&amp;amp;Num(((Right('2011-Q1',1)-1)*3)+1,'00'),'YYYYMM')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Celambarasan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2012 09:11:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/get-quarter-start-month/m-p/355762#M132044</guid>
      <dc:creator>CELAMBARASAN</dc:creator>
      <dc:date>2012-03-16T09:11:41Z</dc:date>
    </item>
  </channel>
</rss>

