<?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: Cummulative Count Starting from nth Month in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Cummulative-Count-Starting-from-nth-Month/m-p/1519822#M599068</link>
    <description>&lt;P&gt;Yes, you can... try something like this&lt;/P&gt;&lt;PRE&gt;RangeSum(Above(Sum({&amp;lt;Month&amp;gt;} Measure), 0, RowNo()))&lt;BR /&gt;*&lt;BR /&gt;Avg(&lt;SPAN&gt;{&amp;lt;Month={"&amp;gt;=$(=AddMonths(Max(Month),-6))"}&amp;gt;} &lt;/SPAN&gt;1)&lt;/PRE&gt;</description>
    <pubDate>Wed, 12 Dec 2018 12:47:54 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2018-12-12T12:47:54Z</dc:date>
    <item>
      <title>Cummulative Count Starting from nth Month</title>
      <link>https://community.qlik.com/t5/QlikView/Cummulative-Count-Starting-from-nth-Month/m-p/1519241#M599064</link>
      <description>&lt;P&gt;I need to create a straight table with a cumulative count of IDs for the past 6 months. So today that would be the count from Jul-2018 to Dec-2018. The issue is that the July count should include the total of all previous months as well (but those previous months should not be displayed on the table). I can't use rangesum since that would require all months to be displayed and the set analysis doesn't work since the Month field I need to filter on is also being displayed on the table.&lt;/P&gt;&lt;P&gt;Table should Look something like this. Top row is the regular count of IDs, Rolling is the cumulative count with the first column including all previous months:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Jul&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Aug&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Sep&amp;nbsp; &amp;nbsp; &amp;nbsp; Oct&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Nov&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dec&lt;/P&gt;&lt;P&gt;count&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;10&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 10&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&lt;/P&gt;&lt;P&gt;Rolling&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;50&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 55&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;60&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 70&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;71&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;71&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:59:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cummulative-Count-Starting-from-nth-Month/m-p/1519241#M599064</guid>
      <dc:creator>nikita42</dc:creator>
      <dc:date>2024-11-16T04:59:50Z</dc:date>
    </item>
    <item>
      <title>Re: Cummulative Count Starting from nth Month</title>
      <link>https://community.qlik.com/t5/QlikView/Cummulative-Count-Starting-from-nth-Month/m-p/1519266#M599065</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/50328"&gt;@nikita42&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;I can't use rangesum since that would require all months to be displayed and the set analysis doesn't work since the Month field I need to filter on is also being displayed on the table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;This is not true... if you ignore selection in month field.... you should be able to accumulate even for the months not displayed.... for example...&lt;/P&gt;&lt;PRE&gt;RangeSum(Above(Sum({&amp;lt;MonthField&amp;gt;} Measure), 0, RowNo())) * Avg(1)&lt;/PRE&gt;&lt;P&gt;Here we use Avg(1) to display the months which are selected as Avg(1) = 1 for selected months and 0 for non selected months.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 12:48:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cummulative-Count-Starting-from-nth-Month/m-p/1519266#M599065</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-12-11T12:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: Cummulative Count Starting from nth Month</title>
      <link>https://community.qlik.com/t5/QlikView/Cummulative-Count-Starting-from-nth-Month/m-p/1519288#M599066</link>
      <description>&lt;P&gt;My month field is part of the set analysis to restrict the count to the last 6 months. So my expression is something like&amp;nbsp;Count({&amp;lt;Month={"&amp;gt;=$(=AddMonths(Max(Month),-6))"}&amp;gt;}Id)&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can't ignore the month AND use it in set analysis, can I?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 13:18:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cummulative-Count-Starting-from-nth-Month/m-p/1519288#M599066</guid>
      <dc:creator>nikita42</dc:creator>
      <dc:date>2018-12-11T13:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Cummulative Count Starting from nth Month</title>
      <link>https://community.qlik.com/t5/QlikView/Cummulative-Count-Starting-from-nth-Month/m-p/1519527#M599067</link>
      <description>see also:&lt;BR /&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-As-Of-Table/ba-p/1466130" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/The-As-Of-Table/ba-p/1466130&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;hope this helps&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;BR /&gt;Marco</description>
      <pubDate>Tue, 11 Dec 2018 21:59:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cummulative-Count-Starting-from-nth-Month/m-p/1519527#M599067</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2018-12-11T21:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Cummulative Count Starting from nth Month</title>
      <link>https://community.qlik.com/t5/QlikView/Cummulative-Count-Starting-from-nth-Month/m-p/1519822#M599068</link>
      <description>&lt;P&gt;Yes, you can... try something like this&lt;/P&gt;&lt;PRE&gt;RangeSum(Above(Sum({&amp;lt;Month&amp;gt;} Measure), 0, RowNo()))&lt;BR /&gt;*&lt;BR /&gt;Avg(&lt;SPAN&gt;{&amp;lt;Month={"&amp;gt;=$(=AddMonths(Max(Month),-6))"}&amp;gt;} &lt;/SPAN&gt;1)&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Dec 2018 12:47:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Cummulative-Count-Starting-from-nth-Month/m-p/1519822#M599068</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-12-12T12:47:54Z</dc:date>
    </item>
  </channel>
</rss>

