<?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: Monthly Cumulative for year as a field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941904#M324742</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14491167832518875 jive_text_macro" jivemacro_uid="_14491167832518875"&gt;
&lt;P&gt;Data:&lt;/P&gt;
&lt;P&gt;Load * inline [&lt;/P&gt;
&lt;P&gt;ID,Year, Month, Sales&lt;/P&gt;
&lt;P&gt;1,2012,1,100&lt;/P&gt;
&lt;P&gt;1,2012,2,200&lt;/P&gt;
&lt;P&gt;2,2012,3,300&lt;/P&gt;
&lt;P&gt;2,2013,1,100&lt;/P&gt;
&lt;P&gt;3,2013,2,200&lt;/P&gt;
&lt;P&gt;3,2013,3,300&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Final:&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RangeSum(Sales, Peek('CumAll')) as CumAll,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(Year &amp;lt;&amp;gt; previous(Year) , Sales , RangeSum(Sales,Peek('CumF1'))) AS CumF1&lt;/P&gt;
&lt;P&gt;RESIDENT Data Order by Year, Month;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;DROP TABLE Data;&lt;/P&gt;



&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just a question,&lt;/P&gt;&lt;P&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;STRONG&gt;When I have this ID field it ignores and calculations are wrong. Is it possible to add ID as well in the condition, i tried but no success.&lt;/STRONG&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;&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;Could you post the result or code.!!&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Dec 2015 04:31:50 GMT</pubDate>
    <dc:creator>tamilarasu</dc:creator>
    <dc:date>2015-12-03T04:31:50Z</dc:date>
    <item>
      <title>Monthly Cumulative for year as a field</title>
      <link>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941899#M324737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have three fields Year, Month, Sales as&lt;/P&gt;&lt;P&gt;Load * inline [&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Year, Month, Sales&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2012,1,100&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2012,2,200&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2012,3,300&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2013,1,100&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2013,2,200&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2013,3,300&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a new field cumulative sum for each year separately which should look like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Year, Month, Sales,CumSales&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2012,1,100,100&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2012,2,200,300&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2012,3,300,600&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2013,1,100,100&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2013,2,200,300&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2013,3,300,600&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Please provide your suggestions&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 02:00:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941899#M324737</guid>
      <dc:creator />
      <dc:date>2015-12-03T02:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Cumulative for year as a field</title>
      <link>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941900#M324738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;Hi S V,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Use the below expression in your chart,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Rangesum(Above(Sum(Sales),0,RowNo()))&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;IMG __jive_id="107923" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/107923_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;File attached against your sample data.&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 02:30:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941900#M324738</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-12-03T02:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Cumulative for year as a field</title>
      <link>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941901#M324739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nagaraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to create a field instead in the chart. I was trying to use below scripts from community answers but it doesnt work. &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F1,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F2,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F3,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RangeSum(F3, Peek('CumAll')) as CumAll,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(F1&amp;lt;&amp;gt; previous(F1),F3,RangeSum(F3, Peek('CumF1'))) AS CumF1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;RESIDENT Data;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DROP TABLE Data;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 03:54:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941901#M324739</guid>
      <dc:creator />
      <dc:date>2015-12-03T03:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Cumulative for year as a field</title>
      <link>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941902#M324740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the attachment !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 04:02:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941902#M324740</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-12-03T04:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Cumulative for year as a field</title>
      <link>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941903#M324741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works fantastic but got one other small change &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I have three fields Year, Month, Sales as&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load * inline [&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;ID,Year, Month, Sales&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;1,2012,1,100&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;1,2012,2,200&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;2,2012,3,300&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;2,2013,1,100&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;3,2013,2,200&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333px; font-family: inherit;"&gt;3,2013,3,300&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;When I have this ID field it ignores and calculations are wrong. Is it possible to add ID as well in the condition, i tried but no success. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 04:22:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941903#M324741</guid>
      <dc:creator />
      <dc:date>2015-12-03T04:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Cumulative for year as a field</title>
      <link>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941904#M324742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14491167832518875 jive_text_macro" jivemacro_uid="_14491167832518875"&gt;
&lt;P&gt;Data:&lt;/P&gt;
&lt;P&gt;Load * inline [&lt;/P&gt;
&lt;P&gt;ID,Year, Month, Sales&lt;/P&gt;
&lt;P&gt;1,2012,1,100&lt;/P&gt;
&lt;P&gt;1,2012,2,200&lt;/P&gt;
&lt;P&gt;2,2012,3,300&lt;/P&gt;
&lt;P&gt;2,2013,1,100&lt;/P&gt;
&lt;P&gt;3,2013,2,200&lt;/P&gt;
&lt;P&gt;3,2013,3,300&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Final:&lt;/P&gt;
&lt;P&gt;LOAD&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RangeSum(Sales, Peek('CumAll')) as CumAll,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(Year &amp;lt;&amp;gt; previous(Year) , Sales , RangeSum(Sales,Peek('CumF1'))) AS CumF1&lt;/P&gt;
&lt;P&gt;RESIDENT Data Order by Year, Month;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;DROP TABLE Data;&lt;/P&gt;



&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just a question,&lt;/P&gt;&lt;P&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;STRONG&gt;When I have this ID field it ignores and calculations are wrong. Is it possible to add ID as well in the condition, i tried but no success.&lt;/STRONG&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;&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;Could you post the result or code.!!&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 04:31:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941904#M324742</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-12-03T04:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Cumulative for year as a field</title>
      <link>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941905#M324743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The result is coming as null when i select some id, actually i am trying to perform on different dataset using the same expressions. It is displaying sums by ignoring the id's for me&lt;/P&gt;&lt;P&gt;Thank you so much for your help. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 04:49:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941905#M324743</guid>
      <dc:creator />
      <dc:date>2015-12-03T04:49:27Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Cumulative for year as a field</title>
      <link>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941906#M324744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to post your QVW file. It's hard to give you the solution without seeing your file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 04:54:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941906#M324744</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-12-03T04:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Cumulative for year as a field</title>
      <link>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941907#M324745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even in the example you shared, I got the problem: Please see below screenshot&lt;IMG alt="1.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/107926_1.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;For ID 2: The cumulative sum shows 100 and 600 which should be 100 and 400 instead. It just ignored that ID field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 05:23:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941907#M324745</guid>
      <dc:creator />
      <dc:date>2015-12-03T05:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Cumulative for year as a field</title>
      <link>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941908#M324746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fine. You need cumulative sales based on the ID.? If yes, check the attachment or post your expected output based on new input (with ID).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 05:36:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941908#M324746</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-12-03T05:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Cumulative for year as a field</title>
      <link>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941909#M324747</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;Try like this, you have to order by Year then only it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F1,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F2,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; F3,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; RangeSum(F3, Peek('CumAll')) as CumAll,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(F1&amp;lt;&amp;gt; Peek(F1), F3, RangeSum(F3, Peek('CumF1'))) AS CumF1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;RESIDENT Data&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ORDER BY F1;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 05:46:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941909#M324747</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-12-03T05:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Cumulative for year as a field</title>
      <link>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941910#M324748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Finally you got the solution!&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Dec 2015 05:59:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Monthly-Cumulative-for-year-as-a-field/m-p/941910#M324748</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-12-03T05:59:12Z</dc:date>
    </item>
  </channel>
</rss>

