<?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 Problem using variable inside another complex aggregation formula in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-using-variable-inside-another-complex-aggregation/m-p/1030193#M638987</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I define a formula using set analysis in my script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;SET eAnzahlSollPF = Max({&amp;lt;Config_AnzahlSollFzge.Produktlinie=Config_Produktlinie.Produktlinie, Config_AnzahlSollFzge.I_Stufe=%I_Stufe.NAME&amp;gt;} [Config_AnzahlSollFzge.Anzahl-Soll-PF]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I only put &lt;STRONG&gt;$(eAnzahlSollPF) &lt;/STRONG&gt;as expression in the chart, I get with my current selection 4:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/118675_pastedImage_6.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I need to use the above variable within THIS formula (when I replace the XXXXXX with a 4 I get the graph below, when putting the formula above I get no values):&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;=RangeSum(&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Above(&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Config_Soll_LC.Soll-Wert]* XXXXXX,&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0,&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RowNo()&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )/Sum(TOTAL Aggr( Sum({&amp;lt; %IWeek = p(%IWeek), IStufenWk.MS = p(IStufenWk.MS)&amp;gt;} [Config_Soll_LC.Soll-Wert] * XXXXXX), %IWeek, IStufenWk.MS)) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;I get the graph I need:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/118674_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;But when replacing the 4 by &lt;STRONG&gt;$(eAnzahlSollPF&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;in this line&lt;/P&gt;&lt;P&gt;Sum(TOTAL Aggr( Sum({&amp;lt; %IWeek = p(%IWeek), IStufenWk.MS = p(IStufenWk.MS)&amp;gt;} [Config_Soll_LC.Soll-Wert] * &lt;STRONG&gt;4&lt;/STRONG&gt;), %IWeek, IStufenWk.MS)) :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;=RangeSum( //eSollKurveRel&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Above(&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt; [Config_Soll_LC.Soll-Wert]*&lt;STRONG&gt;$(eAnzahlSollPF&lt;/STRONG&gt;),&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0,&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RowNo()&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )/Sum(TOTAL Aggr( Sum({&amp;lt; %IWeek = p(%IWeek), IStufenWk.MS = p(IStufenWk.MS)&amp;gt;} [Config_Soll_LC.Soll-Wert] * &lt;STRONG&gt;$(eAnzahlSollPF)),&lt;/STRONG&gt; %IWeek, IStufenWk.MS)) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I only get this&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/118673_pastedImage_0.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get no values...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea what I do wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 19 Mar 2016 20:48:32 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-03-19T20:48:32Z</dc:date>
    <item>
      <title>Problem using variable inside another complex aggregation formula</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-using-variable-inside-another-complex-aggregation/m-p/1030193#M638987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I define a formula using set analysis in my script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;SET eAnzahlSollPF = Max({&amp;lt;Config_AnzahlSollFzge.Produktlinie=Config_Produktlinie.Produktlinie, Config_AnzahlSollFzge.I_Stufe=%I_Stufe.NAME&amp;gt;} [Config_AnzahlSollFzge.Anzahl-Soll-PF]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I only put &lt;STRONG&gt;$(eAnzahlSollPF) &lt;/STRONG&gt;as expression in the chart, I get with my current selection 4:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/118675_pastedImage_6.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and I need to use the above variable within THIS formula (when I replace the XXXXXX with a 4 I get the graph below, when putting the formula above I get no values):&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;=RangeSum(&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Above(&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Config_Soll_LC.Soll-Wert]* XXXXXX,&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0,&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RowNo()&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )/Sum(TOTAL Aggr( Sum({&amp;lt; %IWeek = p(%IWeek), IStufenWk.MS = p(IStufenWk.MS)&amp;gt;} [Config_Soll_LC.Soll-Wert] * XXXXXX), %IWeek, IStufenWk.MS)) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;I get the graph I need:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/118674_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;But when replacing the 4 by &lt;STRONG&gt;$(eAnzahlSollPF&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;in this line&lt;/P&gt;&lt;P&gt;Sum(TOTAL Aggr( Sum({&amp;lt; %IWeek = p(%IWeek), IStufenWk.MS = p(IStufenWk.MS)&amp;gt;} [Config_Soll_LC.Soll-Wert] * &lt;STRONG&gt;4&lt;/STRONG&gt;), %IWeek, IStufenWk.MS)) :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;=RangeSum( //eSollKurveRel&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Above(&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt; [Config_Soll_LC.Soll-Wert]*&lt;STRONG&gt;$(eAnzahlSollPF&lt;/STRONG&gt;),&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0,&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RowNo()&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P style="font-family: Calibri; font-size: 11pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )/Sum(TOTAL Aggr( Sum({&amp;lt; %IWeek = p(%IWeek), IStufenWk.MS = p(IStufenWk.MS)&amp;gt;} [Config_Soll_LC.Soll-Wert] * &lt;STRONG&gt;$(eAnzahlSollPF)),&lt;/STRONG&gt; %IWeek, IStufenWk.MS)) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I only get this&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/118673_pastedImage_0.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get no values...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea what I do wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Mar 2016 20:48:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-using-variable-inside-another-complex-aggregation/m-p/1030193#M638987</guid>
      <dc:creator />
      <dc:date>2016-03-19T20:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using variable inside another complex aggregation formula</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-using-variable-inside-another-complex-aggregation/m-p/1030194#M638988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your dollar sign expansion expands your variable into a Sum() aggregation function, hence the result is an aggregation embedded into another aggregation, which will generally not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's hard to suggest something else without knowing the full context of this expression and your requirements. If possible, please upload a small sample QVW.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Mar 2016 22:57:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-using-variable-inside-another-complex-aggregation/m-p/1030194#M638988</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-03-19T22:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using variable inside another complex aggregation formula</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-using-variable-inside-another-complex-aggregation/m-p/1030195#M638991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would it possible to share a sample?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Mar 2016 23:14:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-using-variable-inside-another-complex-aggregation/m-p/1030195#M638991</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-19T23:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using variable inside another complex aggregation formula</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-using-variable-inside-another-complex-aggregation/m-p/1030196#M638995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, this would explain... please see attached the small sample with 2 graphs.&lt;/P&gt;&lt;P&gt;Left: The real one with the problem&lt;/P&gt;&lt;P&gt;Right: The one with a static "4" in the formula which works... but I don't need it static...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, Oliver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Mar 2016 22:45:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-using-variable-inside-another-complex-aggregation/m-p/1030196#M638995</guid>
      <dc:creator />
      <dc:date>2016-03-20T22:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using variable inside another complex aggregation formula</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-using-variable-inside-another-complex-aggregation/m-p/1030197#M638996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with these variable definations:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;RangeSum(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Above(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $1*Max({&amp;lt;Config_AnzahlSollFzge.Produktlinie=Config_Produktlinie.Produktlinie, Config_AnzahlSollFzge.I_Stufe=%I_Stufe.NAME&amp;gt;} [Config_AnzahlSollFzge.Anzahl-Soll-PF]),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RowNo()&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )/Sum(TOTAL&amp;nbsp; Aggr( Sum({&amp;lt; %IWeek = p(%IWeek), IStufenWk.MS = p(IStufenWk.MS)&amp;gt;} $1 * Max(&lt;SPAN style="color: #ff0000;"&gt;TOTAL &lt;/SPAN&gt;{&amp;lt;Config_AnzahlSollFzge.Produktlinie=Config_Produktlinie.Produktlinie, Config_AnzahlSollFzge.I_Stufe=%I_Stufe.NAME&amp;gt;} [Config_AnzahlSollFzge.Anzahl-Soll-PF])), %IWeek, IStufenWk.MS))&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;Sum(TOTAL&amp;nbsp; Aggr( Sum({&amp;lt; %IWeek = p(%IWeek), IStufenWk.MS = p(IStufenWk.MS)&amp;gt;} $1 * Max(&lt;SPAN style="color: #ff0000;"&gt;TOTAL&lt;/SPAN&gt; {&amp;lt;Config_AnzahlSollFzge.Produktlinie=Config_Produktlinie.Produktlinie, Config_AnzahlSollFzge.I_Stufe=%I_Stufe.NAME&amp;gt;} [Config_AnzahlSollFzge.Anzahl-Soll-PF])), %IWeek, IStufenWk.MS))&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/118756_Capture.PNG" style="height: 161px; width: 620px;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2016 09:22:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-using-variable-inside-another-complex-aggregation/m-p/1030197#M638996</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-03-21T09:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem using variable inside another complex aggregation formula</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-using-variable-inside-another-complex-aggregation/m-p/1030198#M638997</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;thanks a lot... this indeed solved my problem. Solution looks so easy... but cost me a lot of headache before!!&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Oliver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2016 10:44:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-using-variable-inside-another-complex-aggregation/m-p/1030198#M638997</guid>
      <dc:creator />
      <dc:date>2016-03-21T10:44:19Z</dc:date>
    </item>
  </channel>
</rss>

