<?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: quarter over quarter in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/1506568#M756700</link>
    <description>&lt;P&gt;Glad it helped :).&lt;/P&gt;</description>
    <pubDate>Wed, 14 Nov 2018 18:45:20 GMT</pubDate>
    <dc:creator>felipedl</dc:creator>
    <dc:date>2018-11-14T18:45:20Z</dc:date>
    <item>
      <title>quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86362#M756687</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;A _jive_internal="true" data-avatarid="6431" data-externalid="" data-online="false" data-presence="null" data-userid="4484" data-username="stevedark" href="https://community.qlik.com/people/stevedark" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3778c7;" target="_blank"&gt;Steve Dark&lt;/A&gt;&lt;SPAN class="icon-status-icon icon-luminary" style="margin: 0 0 0 4px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #8b8b8b;" title="Luminary"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/people/hic" target="_blank"&gt;hic&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/226258" target="_blank"&gt;felipedl&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" data-avatarid="15025" data-externalid="" data-online="false" data-presence="null" data-userid="206168" data-username="youssefbelloum" href="https://community.qlik.com/people/youssefbelloum" style="font-weight: bold; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #8b8b8b; background-color: #f2f2f2;" target="_blank"&gt;youssef belloum&lt;/A&gt;&lt;SPAN style="color: #a9a9a9; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;i want to calculate the&amp;nbsp; QoQ and&amp;nbsp; YoY&amp;nbsp; like below&amp;nbsp; attached screen shot in pivot table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the data is attached it is coming from db directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86362#M756687</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86363#M756688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sony,&lt;/P&gt;&lt;P&gt;the comparison must be implemented betewen the current year and the previous or between a selected year and the previous of the selected?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the Y/Y field you could use something like this (in the load script I extracted the YEAR from the quarter) &lt;/P&gt;&lt;P&gt;(Sum({&amp;lt;Year = {'$(=Max(Year))'}&amp;gt;} [Value])-Sum({&amp;lt;Year = {'$(=Max(Year)-1)'}&amp;gt;} [Value]))/Sum({&amp;lt;Year = {'$(=Max(Year)-1)'}&amp;gt;} [Value]))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that compare the year selected and the previous, if you want to compare the current and the previous you have to replace Max(Year) with Year(Today()).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the Q/Q the formula is similar but more info are needed: what do you want to compare? This quarter with the previous? A selected quarter with the previous? &lt;/P&gt;&lt;P&gt;If with the current, you need to create a variable in the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vThisQuarter = 'Q' &amp;amp; ceil(month(Today())/3);&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&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; font-size: 13px;"&gt;and then use it in the set analysis.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;But I think that more information are needed (about the totals in the png too).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&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; font-size: 13px;"&gt;kind 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; font-size: 13px;"&gt;S.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 09:54:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86363#M756688</guid>
      <dc:creator>simospa</dc:creator>
      <dc:date>2018-09-19T09:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86364#M756689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for Y/Y -&amp;nbsp;&amp;nbsp; for the selected year should be same for previous year &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for Q/Q&amp;nbsp; -&amp;nbsp; for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11.0pt;"&gt;so if Sep 27 is week no 39 for the year and week no 9 for the quarter, it has to be compared with week no 39 of previous year and week no 9 for the prev quarter&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11.0pt;"&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11.0pt;"&gt;for QOQ how can i include this in set &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;LET vThisQuarter = 'Q' &amp;amp; ceil(month(Today())/3);?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 10:04:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86364#M756689</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2018-09-19T10:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86365#M756690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt; &lt;A _jive_internal="true" data-avatarid="9812" data-externalid="" data-online="false" data-presence="null" data-userid="119406" data-username="franky_h79" href="https://community.qlik.com/people/franky_h79" style="font-weight: bold; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #8b8b8b; background-color: #f2f2f2;"&gt;Frank Hartmann&lt;/A&gt;&lt;SPAN style="color: #a9a9a9; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt; &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&amp;nbsp; any solution for this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 12:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86365#M756690</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2018-09-19T12:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86366#M756691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sony,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the attached QVW for a solution.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Felip.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 13:50:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86366#M756691</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-09-19T13:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86367#M756692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you so much sir&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;. i m checking on this&amp;nbsp; --&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one doubt&amp;nbsp;&amp;nbsp; QoQ and YoY&amp;nbsp;&amp;nbsp; the values is showing more than&amp;nbsp; 100%&amp;nbsp;&amp;nbsp;&amp;nbsp; like 209%&amp;nbsp; 430%&amp;nbsp; like that...&amp;nbsp; is that correct?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 13:56:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86367#M756692</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2018-09-19T13:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86368#M756693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats dependant on the data you have on the spreadsheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As i've seen, your data is having that data and gives the correct value:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see the following:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="213942" alt="sample.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/213942_sample.png" style="height: 496px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the file to see if the values are correct and once they're ok, the app will show the appropriate data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 14:02:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86368#M756693</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-09-19T14:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86369#M756694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the clarification..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have attached the&amp;nbsp; updated qvw..&amp;nbsp; in this i have implemented&amp;nbsp;&amp;nbsp; document on open trigger&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it should select the current quarter and next 3 quarters.&lt;/P&gt;&lt;P&gt;means&amp;nbsp; 2018Q3&amp;nbsp; current quarter&lt;/P&gt;&lt;P&gt;2018Q3&lt;/P&gt;&lt;P&gt;2019Q1&lt;/P&gt;&lt;P&gt;2019Q2&lt;/P&gt;&lt;P&gt;2019Q3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this is one table&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and one more table with same&amp;nbsp; QoQ and YoY&amp;nbsp;&amp;nbsp; --&lt;/P&gt;&lt;P&gt;it should having the selection for&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;2018Q3&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;2019Q1&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;2019Q2&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;2019Q3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and&amp;nbsp;&amp;nbsp; above 2019Q3 ,2019Q4 ,2020Q1....&amp;nbsp; so on&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; how can i include this&amp;nbsp; in other table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 14:11:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86369#M756694</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2018-09-19T14:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86370#M756695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;like this for example&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" data-avatarid="12595" data-externalid="" data-online="false" data-presence="null" data-userid="226258" data-username="felipedl" href="https://community.qlik.com/people/felipedl" style="font-weight: bold; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #8b8b8b; background-color: #f2f2f2;"&gt;Felip Drechsler&lt;/A&gt;&lt;/P&gt;&lt;P&gt;beyond means&amp;nbsp;&amp;nbsp; above 2019Q3........all future quarters&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="213956" alt="beyond.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/213956_beyond.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 14:14:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86370#M756695</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2018-09-19T14:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86371#M756696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What you could do is this:&lt;/P&gt;&lt;P&gt;Based on the selections, you get the values from the minimum value selected to all the quarters from that point on, and then limit the graph to 4 first values for fiscal period.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the attached QVW.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 16:11:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86371#M756696</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-09-19T16:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86372#M756697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry for mis lead &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need the same table&amp;nbsp; which was done by you....&amp;nbsp; its for 4quarters&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i.e&amp;nbsp;&amp;nbsp; current quarter and next 3 quarters &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;second table&amp;nbsp; i need with&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;region ,type, Tcv Qoq Yoy&amp;nbsp;&amp;nbsp;&amp;nbsp; -----------------this will consists&amp;nbsp; by default&amp;nbsp;&amp;nbsp; 4qtrs and beyond 2019Q3 &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 16:26:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86372#M756697</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2018-09-19T16:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86373#M756698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sony,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modified the graph but didnt understand the second graph explanation.&lt;/P&gt;&lt;P&gt;Maybe you can try and get it from the info and graphs that are already in the app an create the visualization you need.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Sep 2018 17:25:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86373#M756698</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-09-19T17:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86374#M756699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your inputs sir &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/felipedl"&gt;felipedl&lt;/A&gt;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2018 09:54:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/86374#M756699</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2018-09-20T09:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: quarter over quarter</title>
      <link>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/1506568#M756700</link>
      <description>&lt;P&gt;Glad it helped :).&lt;/P&gt;</description>
      <pubDate>Wed, 14 Nov 2018 18:45:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quarter-over-quarter/m-p/1506568#M756700</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2018-11-14T18:45:20Z</dc:date>
    </item>
  </channel>
</rss>

