<?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: Help with AGGR in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815816#M535818</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ruben,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply. I have tried this method but what I want differs from this. I want the sales to be aggregated for each distributor at YearQtr level and then filter out the negative bookings, not each individual rows of negative bookings. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example,&lt;/P&gt;&lt;P&gt;2012 Q3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dist1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 56.6&lt;/P&gt;&lt;P&gt;2012 Q3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dist1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -24.5&lt;/P&gt;&lt;P&gt;2012 Q4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dist 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -6.6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I want the aggregated sum to be considered for each Distributor and YearQtr. thus for my example for 2012 Q3 Dist1 should come up with 22.1 and for 2012 Q4 the -6.6 should be neglected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this clears the confusion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Abhinava&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Jan 2015 11:29:42 GMT</pubDate>
    <dc:creator>er_abhichandra</dc:creator>
    <dc:date>2015-01-05T11:29:42Z</dc:date>
    <item>
      <title>Help with AGGR</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815814#M535816</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 I have a list of distributors and their sales with YearQtrs. I want to display only those resellers who have sales in the currently selected quarter but not in the previous 8 quarters. I have resellers with negative sales which I want to filter out. Therefore If a distributor has a positive sales in any one of the previous 8 quarters I want to exclude that as well as the one with negative sales.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am attaching a sample data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Abhinava&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 11:03:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815814#M535816</guid>
      <dc:creator>er_abhichandra</dc:creator>
      <dc:date>2015-01-05T11:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: Help with AGGR</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815815#M535817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhinava, I did it without aggr, in Script I added a Period Field:&lt;/P&gt;&lt;P&gt;LOAD [Analysis Year Quarter], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MakeDate(Left([Analysis Year Quarter], 4), Right([Analysis Year Quarter],1)*3) as Period,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WW_Reseller_Parent, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sales&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[.\Community Aggr.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is CH26_20150105_162714);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and then a simple table with WW_Reseller_Parent as Dimension and an expression like:&lt;/P&gt;&lt;P&gt;If(Sales, //Or "If(Sales&amp;gt;0" if you want to get only the ones with positive sales in selected quarter&lt;/P&gt;&lt;P&gt; If(Count({&amp;lt;Period={"&amp;gt;=$(=AddMonths(Period, -24))&amp;lt;=$(=Period))"}, Sales={"&amp;gt;0"}, [Analysis Year Quarter]&amp;gt;} DISTINCT [Analysis Year Quarter])=1, Sum(Sales))&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 11:23:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815815#M535817</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2015-01-05T11:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: Help with AGGR</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815816#M535818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ruben,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply. I have tried this method but what I want differs from this. I want the sales to be aggregated for each distributor at YearQtr level and then filter out the negative bookings, not each individual rows of negative bookings. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example,&lt;/P&gt;&lt;P&gt;2012 Q3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dist1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 56.6&lt;/P&gt;&lt;P&gt;2012 Q3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dist1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -24.5&lt;/P&gt;&lt;P&gt;2012 Q4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dist 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -6.6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I want the aggregated sum to be considered for each Distributor and YearQtr. thus for my example for 2012 Q3 Dist1 should come up with 22.1 and for 2012 Q4 the -6.6 should be neglected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this clears the confusion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Abhinava&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 11:29:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815816#M535818</guid>
      <dc:creator>er_abhichandra</dc:creator>
      <dc:date>2015-01-05T11:29:42Z</dc:date>
    </item>
    <item>
      <title>Re: Help with AGGR</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815817#M535819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;If based on selections, have you tried something like the below in your expression.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Aggr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;If&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Sales&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &amp;gt; 0,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Sales&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, 0)),&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;WW_Reseller_Parent&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Analysis Year Quarter]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kamiel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 11:39:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815817#M535819</guid>
      <dc:creator>kamielrajaram</dc:creator>
      <dc:date>2015-01-05T11:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help with AGGR</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815818#M535820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry I'm not sure to understand it right, you want something like?:&lt;/P&gt;&lt;P&gt;If(Sum(Sales)&amp;gt;0,&lt;/P&gt;&lt;P&gt; If(Sum({&amp;lt;Period={"&amp;gt;=$(=AddMonths(Period, -24))&amp;lt;=$(=Period))"}, [Analysis Year Quarter]&amp;gt;} &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Aggr(If(Sum({&amp;lt;Period={"&amp;gt;=$(=AddMonths(Period, -24))&amp;lt;=$(=Period))"}, [Analysis Year Quarter]&amp;gt;}Sales)&amp;lt;&amp;gt;0, 1, 0), [Analysis Year Quarter], WW_Reseller_Parent))=1, Sum(Sales))&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It takes the customers with positive sales, and with no sales in the previous 8 quarters of the selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 12:16:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815818#M535820</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2015-01-05T12:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Help with AGGR</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815819#M535821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kamiel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the following filter. First I want to get the aggregated bookings for the previous 8 qtrs. Assuming Period is autonumber of YearQtr.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;Aggr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;({&amp;lt;Period={"&amp;gt;=$(=MAX(Period)-8)&amp;lt;$(=MAX(Period))"}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;Sales&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;),&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;WW_Reseller_Parent&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;[Analysis Year Quarter]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Then I want to take only the zero sales in this aggregated table. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I am not able to compare each individual row of this aggregated table in memory to zero.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Is there any way I can do that?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Abhinava&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jan 2015 12:23:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815819#M535821</guid>
      <dc:creator>er_abhichandra</dc:creator>
      <dc:date>2015-01-05T12:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Help with AGGR</title>
      <link>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815820#M535822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhinava,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, but I am not to clear on what you want to achieve with comparing to zero. Hope this helps though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Aggr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;WW_Reseller_Parent&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; = , &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Period&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;={&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"&amp;gt;=$(=MAX(Period)-8)&amp;lt;$(=MAX(Period))"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Sales&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &amp;gt; 0,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Sales&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) ),&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;WW_Reseller_Parent&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Analysis Year Quarter]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Aggr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;WW_Reseller_Parent&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; = , &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Period&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;={&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"&amp;gt;=$(=MAX(Period)-8)&amp;lt;$(=MAX(Period))"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Sales&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &amp;lt;= 0,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Sales&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) ),&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;WW_Reseller_Parent&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Analysis Year Quarter]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Kamiel&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jan 2015 10:05:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Help-with-AGGR/m-p/815820#M535822</guid>
      <dc:creator>kamielrajaram</dc:creator>
      <dc:date>2015-01-06T10:05:34Z</dc:date>
    </item>
  </channel>
</rss>

