<?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: Is it possible to create quarter on Month object in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-create-quarter-on-Month-object/m-p/647455#M237127</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have the month number then a simple function will work nicely.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Months:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; *,&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'Q' &amp;amp; CEIL(TESTMONTH/3) AS TESTQTR;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;TESTMONTH&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;4&lt;/P&gt;&lt;P&gt;5&lt;/P&gt;&lt;P&gt;6&lt;/P&gt;&lt;P&gt;7&lt;/P&gt;&lt;P&gt;8&lt;/P&gt;&lt;P&gt;9&lt;/P&gt;&lt;P&gt;10&lt;/P&gt;&lt;P&gt;11&lt;/P&gt;&lt;P&gt;12&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Aug 2014 10:54:19 GMT</pubDate>
    <dc:creator>DavidFoster1</dc:creator>
    <dc:date>2014-08-08T10:54:19Z</dc:date>
    <item>
      <title>Is it possible to create quarter on Month object</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-create-quarter-on-Month-object/m-p/647452#M237124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any body please tell me is it possible to create Quarter object based on the month, i do not have date object with me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2014 10:36:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-create-quarter-on-Month-object/m-p/647452#M237124</guid>
      <dc:creator />
      <dc:date>2014-08-08T10:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to create quarter on Month object</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-create-quarter-on-Month-object/m-p/647453#M237125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if(month&amp;lt;=3,'Quarter1',if(month&amp;gt;3 and month&amp;lt;=6;'Quarter 2';if(month&amp;gt;6 and month&amp;lt;10;'Quarter 3','Quarter 4')))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;something like this...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2014 10:40:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-create-quarter-on-Month-object/m-p/647453#M237125</guid>
      <dc:creator>agomes1971</dc:creator>
      <dc:date>2014-08-08T10:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to create quarter on Month object</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-create-quarter-on-Month-object/m-p/647454#M237126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can hard code this by this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(match(Month,'Jan','Feb','Mar'),'Q1',If(match(Month,'Apr','May','Jun'),'Q2',if(match(Month,'Jul','Aug','Sep'),'Q3','Q4')))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope above code will help you&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;bhawna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2014 10:44:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-create-quarter-on-Month-object/m-p/647454#M237126</guid>
      <dc:creator />
      <dc:date>2014-08-08T10:44:25Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to create quarter on Month object</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-create-quarter-on-Month-object/m-p/647455#M237127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have the month number then a simple function will work nicely.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Months:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; *,&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'Q' &amp;amp; CEIL(TESTMONTH/3) AS TESTQTR;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;TESTMONTH&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;4&lt;/P&gt;&lt;P&gt;5&lt;/P&gt;&lt;P&gt;6&lt;/P&gt;&lt;P&gt;7&lt;/P&gt;&lt;P&gt;8&lt;/P&gt;&lt;P&gt;9&lt;/P&gt;&lt;P&gt;10&lt;/P&gt;&lt;P&gt;11&lt;/P&gt;&lt;P&gt;12&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Aug 2014 10:54:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-create-quarter-on-Month-object/m-p/647455#M237127</guid>
      <dc:creator>DavidFoster1</dc:creator>
      <dc:date>2014-08-08T10:54:19Z</dc:date>
    </item>
  </channel>
</rss>

