<?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: Aggregation, RangeSum, Above in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126777#M19218</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure...Breaking into pieces&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Count(DISTINCT {&amp;lt;[New or Existing] = {"&amp;gt;0"}&amp;gt;} [Customer ID])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count of distinct customers where &lt;STRONG&gt;[New or Existing]&lt;/STRONG&gt; is not 0 (because Existing = 0).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({1} 0) is used because there are some missing entries based on the set analysis condition... so the chart was breaking... I just added 0 to make the line continuous.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you need to understand what RangeSum(Above()) is used for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Aug 2018 13:07:53 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2018-08-10T13:07:53Z</dc:date>
    <item>
      <title>Aggregation, RangeSum, Above</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126772#M19213</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;I'm using following formula to get a line chart that will represent accumulated count of new customer by order date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aggr(RangeSum(Above(Sum(Num([New or Existing])),0,RowNo())), [Customer Acquisition Market], [Order Date])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My count is off then the same example in Tableau post found at &lt;A href="https://www.tableau.com/about/blog/LOD-expressions?__src=liftigniter&amp;amp;__widget=blog-widget&amp;amp;li_source=LI&amp;amp;li_medium=blog-widget" title="https://www.tableau.com/about/blog/LOD-expressions?__src=liftigniter&amp;amp;__widget=blog-widget&amp;amp;li_source=LI&amp;amp;li_medium=blog-widget"&gt;Top 15 Tableau LOD Expressions (Practical Examples)&lt;/A&gt; #5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think my count is off because I'm not doing sum for only new customers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any guidance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2018 01:51:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126772#M19213</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2018-08-10T01:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation, RangeSum, Above</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126773#M19214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You calculate [New or Existing] as a flag in the load script for each and every order line item. So for some customers you get a single flag for a certain day but for others you get several flags. If the customer has two orders with 3 items on the first order and 5 items on the second order then this customer will have 8 [New or Existing] flags for that very day. Summing these flags will definitely lead to wrong numbers ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to do the test whether [Customer Aquistion Date]=[Order Date] after you have aggregated up to the date level for each customer - then you can get a correct flag to sum og count. This you can do either in your load script or in a chart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2018 05:12:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126773#M19214</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-08-10T05:12:16Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation, RangeSum, Above</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126774#M19215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you Count the Customer ID instead of doing Sum(New or Existing)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Aggr(RangeSum(Above(Count(DISTINCT {&amp;lt;[New or Existing] = {"&amp;gt;0"}&amp;gt;} [Customer ID]) + Sum({1} 0), 0, RowNo())), [Customer Acquisition Market], [Order Date])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/210543_Capture.PNG" style="height: 228px; width: 620px;" /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it has to do with what &lt;A href="https://community.qlik.com/people/petter-s"&gt;petter-s&lt;/A&gt;‌ has already mentioned in his post above&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2018 12:00:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126774#M19215</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-08-10T12:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation, RangeSum, Above</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126775#M19216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Petter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm thankful for your response. It did provide me the insight on what I had to correct. I was still struggling with coming up the formula in the chart, which Sunny has resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do appreciate your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2018 12:46:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126775#M19216</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2018-08-10T12:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation, RangeSum, Above</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126776#M19217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Me and my team are planning to provide a demo on how to do TableauLoD using Qlik Sense to our internal Qlik and business users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you would help me understand the formula in simple language will be very helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to understand what you have done in the formula. I did wanted to use Customer Id but was struggling to get right syntax for distinct and other pieces that were needed in the formula.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2018 13:02:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126776#M19217</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2018-08-10T13:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation, RangeSum, Above</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126777#M19218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure...Breaking into pieces&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Count(DISTINCT {&amp;lt;[New or Existing] = {"&amp;gt;0"}&amp;gt;} [Customer ID])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Count of distinct customers where &lt;STRONG&gt;[New or Existing]&lt;/STRONG&gt; is not 0 (because Existing = 0).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({1} 0) is used because there are some missing entries based on the set analysis condition... so the chart was breaking... I just added 0 to make the line continuous.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you need to understand what RangeSum(Above()) is used for?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2018 13:07:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126777#M19218</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-08-10T13:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation, RangeSum, Above</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126778#M19219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is definitely helpful in understanding. I do understand RangeSum(Above()) but please let me understand from your prespective and I think it will be useful for others reviewing this post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please also explain little bit on why count on customer and not sum on new/existing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2018 13:31:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126778#M19219</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2018-08-10T13:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation, RangeSum, Above</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126779#M19220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;That is definitely helpful in understanding. I do understand RangeSum(Above()) but please let me understand from your prespective and I think it will be useful for others reviewing this post.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;RangeSum(Above()) is used for cumulative sum. This can also be achieved using the &lt;A href="https://community.qlik.com/qlik-blogpost/4531"&gt;The As-Of Table&lt;/A&gt; and I consider it to be a better option...but a lot of the time developers don't have access to the script, or don't want to touch the complicated scripts in which case a less efficient way of doing accumulation is using RangeSum(Above()) function (&lt;A href="https://community.qlik.com/docs/DOC-4252"&gt;Calculating rolling n-period totals, averages or other aggregations&lt;/A&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Can you please also explain little bit on why count on customer and not sum on new/existing.&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I didn't do my own research on this, but what Petter mentioned above made sense that there might multiple items on there 1st order...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Customer ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Customer Aquistion Date]&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Order&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; New or Existing&lt;/P&gt;&lt;P&gt;ABC&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 01/20/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 01/20/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 123&amp;nbsp;&amp;nbsp;&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;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;ABC&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 01/20/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 01/20/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 123&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;ABC&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 01/20/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 01/20/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 123&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P&gt;ABC&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 03/30/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 01/20/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 234&amp;nbsp;&amp;nbsp;&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;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;ABC&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 04/21/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 01/20/2018&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 345&amp;nbsp;&amp;nbsp;&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;&amp;nbsp; 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if you do Sum(New or Existing), it will be 3... but do we really have 3 new customers? No, the customer is only 1... but his 1st order included 3 items.... So, Distinct count of customer where &lt;STRONG&gt;New or Existing&lt;/STRONG&gt; &amp;lt;&amp;gt; 0 or &lt;STRONG&gt;New or Existing&lt;/STRONG&gt; = 1 will give 1 which is the right number, right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2018 13:43:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126779#M19220</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-08-10T13:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation, RangeSum, Above</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126780#M19221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why chart renders zigzag instead of continuous line when I reload it or try to add a calculated dimension in the script which results in same number of rows in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 12:56:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126780#M19221</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2018-08-13T12:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation, RangeSum, Above</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126781#M19222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I implemented AsofDate and it is much easier to get chart working. I've included it here for reference. I still had challenge getting smooth line after reloading or adding additional data points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 17:52:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-RangeSum-Above/m-p/126781#M19222</guid>
      <dc:creator>vvira1316</dc:creator>
      <dc:date>2018-08-13T17:52:03Z</dc:date>
    </item>
  </channel>
</rss>

