<?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: MONTH function with MIXMATCH in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Creating-Quarters-using-Months/m-p/482742#M690883</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not exactly the way I had envisioned doing it, but it did in fact work! thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Sep 2013 21:47:04 GMT</pubDate>
    <dc:creator>MalcolmCICWF</dc:creator>
    <dc:date>2013-09-04T21:47:04Z</dc:date>
    <item>
      <title>Creating Quarters using Months</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Quarters-using-Months/m-p/482740#M690881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a field called PoolMonth using the MONTH function &lt;STRONG&gt;(MONTH(poolstart) as PoolMonth)&lt;/STRONG&gt;. In the next table I am trying to use PoolMonth in a MIXMATCH fuction to breakout months by business quarter. My script is completing and creating a field called "Quarter", except there is nothing in it. I know the PoolMonth field contains the month as Jan, Feb, Mar... ect, but it seems I cannot get the formatting correct to group the months in each quarter. I have tried writing the month as Jan, January, 01, 1, and nothing is working. Can anyone point out what the issue is?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="46200" alt="Untitled.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/46200_Untitled.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2013 20:25:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Quarters-using-Months/m-p/482740#M690881</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2013-09-04T20:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: MONTH function with MIXMATCH</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Quarters-using-Months/m-p/482741#M690882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeremy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I understand the problem correctly, you are actually after a piece of code that will provide you with the correct quarter for a given month...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, then try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Q' &amp;amp; ceil(&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;PoolMonth &lt;/STRONG&gt;/ 3) as Quarter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;April is the 4th month and so 4 divided by 3 will give you 1.33, and the ceil(ing) function rounds it up to 2. So April will be allocated to the second quarter (Q2) and October(10/3) will be round up to Q4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope This helps,&lt;/P&gt;&lt;P&gt;Charles&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2013 20:56:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Quarters-using-Months/m-p/482741#M690882</guid>
      <dc:creator />
      <dc:date>2013-09-04T20:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: MONTH function with MIXMATCH</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Quarters-using-Months/m-p/482742#M690883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not exactly the way I had envisioned doing it, but it did in fact work! thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2013 21:47:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Quarters-using-Months/m-p/482742#M690883</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2013-09-04T21:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: MONTH function with MIXMATCH</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Quarters-using-Months/m-p/482743#M690884</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;Do u want Q1,Q2, Q3 and Q4 like this ? If u want that use like &lt;/P&gt;&lt;P&gt;'Q' &amp;amp; ceil(&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;PoolMonth &lt;/STRONG&gt;/ 3) as Quarter (or)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;In script :&lt;/P&gt;&lt;P&gt;Month(PoolMonth) * 1 as MonthKey,&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;MonthMapping:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthKey, Month, Quarter&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, Jan, Q1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, Feb, Q1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, Mar, Q1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, Apr, Q2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5, May, Q2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6, Jun, Q2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 7, Jul, Q3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8, Aug, Q3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 9, Sep, Q3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10, Oct, Q4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 11, Nov, Q4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 12, Dec, Q4&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2013 21:48:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Quarters-using-Months/m-p/482743#M690884</guid>
      <dc:creator>v_iyyappan</dc:creator>
      <dc:date>2013-09-04T21:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: MONTH function with MIXMATCH</title>
      <link>https://community.qlik.com/t5/QlikView/Creating-Quarters-using-Months/m-p/2423145#M1225380</link>
      <description>&lt;P&gt;Hi.. I found this post and created this field using the code but does not change the report output when I click on Q1 ... still shows all months data.&amp;nbsp; I'm missing something as I need to attach it to the field Booking Month&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Feb 2024 14:09:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Creating-Quarters-using-Months/m-p/2423145#M1225380</guid>
      <dc:creator>SouthsideFinance</dc:creator>
      <dc:date>2024-02-24T14:09:02Z</dc:date>
    </item>
  </channel>
</rss>

