<?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 in qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168014#M897101</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi prachi, right now that expression is checking if the sum of &lt;STRONG style="text-decoration: underline;"&gt;all&lt;/STRONG&gt; customers is greater than 0, show all, else show 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to exclude &lt;STRONG style="text-decoration: underline;"&gt;some&lt;/STRONG&gt; customers you can check each customer inside the Aggr():&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=Sum(AGGR(If(SUM(M1+ M2 + M3 + M4)&amp;gt;0, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;SUM(M1+ M2 + M3 + M4), 0)&lt;/SPAN&gt;,Customer))&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;Using Sum with not numeric values will cause the sum to fail, to avoid this possibility you can use RangeSum(), wich converts not numeric values to zero:&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="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;=Sum(AGGR(If(RangeSum(M1, M2, M3, M4)&amp;gt;0, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;RangeSum(M1, M2, M3, M4)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;, 0)&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;,Customer))&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;Not tested, maybe there is a typo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Jul 2016 11:44:23 GMT</pubDate>
    <dc:creator>rubenmarin</dc:creator>
    <dc:date>2016-07-28T11:44:23Z</dc:date>
    <item>
      <title>Aggregation in qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168013#M897100</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 have a requirement where in I need to aggregate my measure at a lower granular level,and display at a higher level based on a condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached&amp;nbsp; is a sample computation.&lt;/P&gt;&lt;P&gt;Please suggest if it is Possible to do in Qlikview&lt;/P&gt;&lt;P&gt;The Formula I am using in my qlikview Pivot table is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=IF(sum(AGGR(SUM(M1+ M2 + M3 + M4),Customer))&amp;gt; 0,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;sum(AGGR(SUM(M1+ M2 + M3 + M4),Customer))&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also tried this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=IF(SUM(AGGR(SUM(M1),Customer)+ AGGR(SUM(M2),Customer) + AGGR(SUM(M3),&lt;SPAN style="font-size: 13.3333px;"&gt;Customer&lt;/SPAN&gt;) + AGGR(SUM(M4),&lt;SPAN style="font-size: 13.3333px;"&gt;Customer&lt;/SPAN&gt;)) &amp;gt;0,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;SUM(AGGR(SUM(M1),Customer)+ AGGR(SUM(M2),Customer) + AGGR(SUM(M3),&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Customer&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;) + AGGR(SUM(M4),&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Customer&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;))&lt;/SPAN&gt;,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&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/Aggregation-in-qlikview/m-p/1168013#M897100</guid>
      <dc:creator>prachisangewar</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation in qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168014#M897101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi prachi, right now that expression is checking if the sum of &lt;STRONG style="text-decoration: underline;"&gt;all&lt;/STRONG&gt; customers is greater than 0, show all, else show 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to exclude &lt;STRONG style="text-decoration: underline;"&gt;some&lt;/STRONG&gt; customers you can check each customer inside the Aggr():&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=Sum(AGGR(If(SUM(M1+ M2 + M3 + M4)&amp;gt;0, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;SUM(M1+ M2 + M3 + M4), 0)&lt;/SPAN&gt;,Customer))&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;Using Sum with not numeric values will cause the sum to fail, to avoid this possibility you can use RangeSum(), wich converts not numeric values to zero:&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="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;=Sum(AGGR(If(RangeSum(M1, M2, M3, M4)&amp;gt;0, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;RangeSum(M1, M2, M3, M4)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;, 0)&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;,Customer))&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;Not tested, maybe there is a typo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 11:44:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168014#M897101</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2016-07-28T11:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation in qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168015#M897102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try SUM(TOTAL &amp;lt;Customer&amp;gt; M1+M2+M3+M4)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this to evaluate by dept&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(aggr(if(sum(TOTAL &amp;lt;Customer&amp;gt; M1+M2+M3+M4)&amp;gt;0,sum(TOTAL &amp;lt;Customer&amp;gt; M1+M2+M3+M4),0),Customer,Dept))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 11:48:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168015#M897102</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2016-07-28T11:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation in qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168016#M897103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prachi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do the following to achieve your requirement,&lt;/P&gt;&lt;P&gt;Straight Table Properties,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dimension: Dept&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Expression: Aggr(Sum(Aggr(If(Sum([M1+M2+M3+M4])&amp;gt;0,Sum([M1+M2+M3+M4]),0), Customer)),Dept)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this 'll give you the table with 3 records which you need&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Narsi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 12:42:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168016#M897103</guid>
      <dc:creator />
      <dc:date>2016-07-28T12:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation in qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168017#M897104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Got Another issue with my report.I need to use the same logic but this time to compute Year to Date Amount.My formula is as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=(SUM(AGGR(IF((SUM({&amp;lt;Date=,DATE_NUM={"&amp;gt;=$(=Num(YearStart(Max(DATE_NUM))))&amp;lt;=$(=Max(DATE_NUM))"}&amp;gt;}M1)&lt;/P&gt;&lt;P&gt;+SUM({&amp;lt;Date=,DATE_NUM={"&amp;gt;=$(=Num(YearStart(Max(DATE_NUM))))&amp;lt;=$(=Max(DATE_NUM))"}&amp;gt;}M2)) = 0,&lt;/P&gt;&lt;P&gt;IF((SUM({&amp;lt;Date=,DATE_NUM={"&amp;gt;=$(=Num(YearStart(Max(DATE_NUM))))&amp;lt;=$(=Max(DATE_NUM))"}&amp;gt;}M3)&lt;/P&gt;&lt;P&gt;+SUM({&amp;lt;Reporting_Date=,DATE_NUM={"&amp;gt;=$(=Num(YearStart(Max(DATE_NUM))))&amp;lt;=$(=Max(DATE_NUM))"}&amp;gt;}M4)) &amp;gt; 0,&lt;/P&gt;&lt;P&gt;(Sum({&amp;lt;Reporting_Date=,DATE_NUM={"&amp;gt;=$(=Num(YearStart(Max(DATE_NUM))))&amp;lt;=$(=Max(DATE_NUM))"}&amp;gt;}M3)&lt;/P&gt;&lt;P&gt;+ Sum({&amp;lt;Reporting_Date=,DATE_NUM={"&amp;gt;=$(=Num(YearStart(Max(DATE_NUM))))&amp;lt;=$(=Max(DATE_NUM))"}&amp;gt;} M4)),0)),Customer,Dept)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The requirement is to get the total amount form the beginning of the year to Date selected in the List box.&lt;/P&gt;&lt;P&gt;The issue is, if a Customer does not exist on the selected date but exists in the past days ,its values are not getting included in the final amount&lt;/P&gt;&lt;P&gt;e.g:&lt;/P&gt;&lt;P&gt;Customer A exists for Jan,Feb,March but not the Date selected by user (31st April),then the values of the three months are not taken into consideration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only if Customer exists on the&amp;nbsp; Date selected all past values are taken into consideration..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest what should be solution to get all the values to be considered for each customer as it is Year to Date Report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 08:55:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168017#M897104</guid>
      <dc:creator>prachisangewar</dc:creator>
      <dc:date>2016-08-03T08:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation in qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168018#M897105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi prachi, maybe adding the set analisys to the first Sum():&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=(SUM(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;{&amp;lt;Date=,DATE_NUM={"&amp;gt;=$(=Num(YearStart(Max(DATE_NUM))))&amp;lt;=$(=Max(DATE_NUM))"}&lt;/STRONG&gt; &lt;/SPAN&gt;AGGR(IF((SUM({&amp;lt;Date=,DATE_NUM={"&amp;gt;=$(=Num(YearStart(Max(DATE_NUM))))&amp;lt;=$(=Max(DATE_NUM))"}&amp;gt;}M1)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;+SUM({&amp;lt;Date=,DATE_NUM={"&amp;gt;=$(=Num(YearStart(Max(DATE_NUM))))&amp;lt;=$(=Max(DATE_NUM))"}&amp;gt;}M2)) = 0,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IF((SUM({&amp;lt;Date=,DATE_NUM={"&amp;gt;=$(=Num(YearStart(Max(DATE_NUM))))&amp;lt;=$(=Max(DATE_NUM))"}&amp;gt;}M3)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;+SUM({&amp;lt;Reporting_Date=,DATE_NUM={"&amp;gt;=$(=Num(YearStart(Max(DATE_NUM))))&amp;lt;=$(=Max(DATE_NUM))"}&amp;gt;}M4)) &amp;gt; 0,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(Sum({&amp;lt;Reporting_Date=,DATE_NUM={"&amp;gt;=$(=Num(YearStart(Max(DATE_NUM))))&amp;lt;=$(=Max(DATE_NUM))"}&amp;gt;}M3)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;+ Sum({&amp;lt;Reporting_Date=,DATE_NUM={"&amp;gt;=$(=Num(YearStart(Max(DATE_NUM))))&amp;lt;=$(=Max(DATE_NUM))"}&amp;gt;} M4)),0)),Customer,Dept)))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 11:58:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168018#M897105</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2016-08-03T11:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation in qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168019#M897106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prachi,&lt;/P&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0" style="font-size: 9pt;"&gt;&lt;TBODY&gt;&lt;TR bgcolor="#f5f5f5"&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;Dept&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;Sum(Aggr(if(Sum(RangeSum(M1,M2,M3,M4))&amp;gt;0,Sum(RangeSum(M1,M2,M3,M4)),0),Customer))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;D1&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;99&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;D2&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;162&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;D3&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;0&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Aug 2016 12:33:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregation-in-qlikview/m-p/1168019#M897106</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2016-08-03T12:33:45Z</dc:date>
    </item>
  </channel>
</rss>

