<?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: Rangesum with two Dimensions in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611610#M225712</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your help. Your example is working just fine! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;Just tell me something... How did you aggregate the data to date? When I first send you my sample Qvw, the data wasn´t aggregated. Did you use "Group by" in script with Sum(Values) as Sales (...) Group by Date? Or did you done that in Excel when you exported the data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your help and patience!&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Bs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Mar 2014 16:15:31 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-03-26T16:15:31Z</dc:date>
    <item>
      <title>Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611601#M225703</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 having a problem with a Rangesum expression and need your help.&lt;/P&gt;&lt;P&gt;I´ve got a pivot table with two Dimensions, Month and Day. Then I´ve got in the expressions my Sales , Sales LAst year, and then my problem appears... I need to have a YTD, that gives me accumulated values for Month and Day when I expand my Day dimension is expanded. That´s when I cannot see what I wish. My Values for YTD Month are fine, and for Accumulated Day granularity are also fine, but with January expanded (or another Month), the other Months do not accumulate, giving me just the Sales for each Month by it self.&lt;/P&gt;&lt;P&gt;I´m using this expression:&lt;/P&gt;&lt;P&gt;=RangeSum(Alt(Above(TOTAL [&lt;EM&gt;myexpressionName&lt;/EM&gt;]), 0), rangesum(above(sum({$&amp;lt;Year={2013}&amp;gt;} (A - B - C)),0)))&lt;/P&gt;&lt;P&gt;My Sales expression is a Calculated sum of A - B - C&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reminding that&lt;SPAN style="color: #575757; text-decoration: underline;"&gt; My Values are fine when Day is not expanded&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;My Accumulated &lt;SPAN style="text-decoration: underline;"&gt;Days Values are also fine&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;Only my &lt;SPAN style="text-decoration: underline;"&gt;Months that are NOT expanded, that doesn´t Accumulate&lt;/SPAN&gt;, giving me just each Month Total.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´ve tried to Start the expression with Sum(Aggr(...)), but that mess with my values and does not give me what I need.&lt;/P&gt;&lt;P&gt;Thanks in Advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Bruno Silva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Mar 2014 22:44:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611601#M225703</guid>
      <dc:creator />
      <dc:date>2014-03-23T22:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611602#M225704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this two expressions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sales: Sum(Sales)&lt;/P&gt;&lt;P&gt;Acc_Sales:&lt;/P&gt;&lt;P&gt;If(Dimensionality()=0, [Sales],&lt;/P&gt;&lt;P&gt;&amp;nbsp; If(Dimensionality()=1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(Aggr(RangeSum(Above(TOTAL Sum(Aggr(Sum(ValNetoUSD),Day)),0,RowNo(TOTAL))),Month))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RangeSum(Above(TOTAL [Sales],0,RowNo(TOTAL)))&lt;/P&gt;&lt;P&gt;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See that you need to use dimensionality function to do&amp;nbsp; this.&amp;nbsp; If this not work, try to post a qvw with some data,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2014 01:08:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611602#M225704</guid>
      <dc:creator>jolivares</dc:creator>
      <dc:date>2014-03-24T01:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611603#M225705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Morning Juan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried what you suggested, but it´s not working very well.&lt;/P&gt;&lt;P&gt;When looking at Day Dimension, it´s fine, but at Month Dimension, the values are all wrong. I´ve tried some things, but cannot solve it!&lt;/P&gt;&lt;P&gt;Here is an example of the pivot table:&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="6173" __jive_macro_name="document" class="jive_macro_document jive_macro" href="https://community.qlik.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Bruno Silva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2014 10:10:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611603#M225705</guid>
      <dc:creator />
      <dc:date>2014-03-24T10:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611604#M225706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2014 12:37:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611604#M225706</guid>
      <dc:creator>jolivares</dc:creator>
      <dc:date>2014-03-24T12:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611605#M225707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Juan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your help, but my problem persists...&lt;/P&gt;&lt;P&gt;The problem is that my client wants to be able to view accumulated Month, even with one Day dimension expanded in a Month.&lt;/P&gt;&lt;P&gt;Right now what happens is that when you expand Day Dimension in a Month, ALL other Months appears as 0. Without values. Imagine that you have 250 as total for January, and 150 for February.&lt;/P&gt;&lt;P&gt;Jan&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |Day&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |Sales&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |AccSales&lt;/P&gt;&lt;P&gt;&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; |100&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |10&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |100&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 200&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |15&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |50&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 250&lt;/P&gt;&lt;P&gt;Feb&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; | 150&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | 400&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (This Month has Day Dimension Collapsed)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right now what you see when Day Dimension is Expanded in February is Feb&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |150&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that this clarifies what my client wants to see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Bruno Silva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2014 13:36:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611605#M225707</guid>
      <dc:creator />
      <dc:date>2014-03-24T13:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611606#M225708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the attached example, I export and use your data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2014 18:15:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611606#M225708</guid>
      <dc:creator>jolivares</dc:creator>
      <dc:date>2014-03-24T18:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611607#M225709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Juan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works fine in your example, but not in my data. I´m missing something...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2014 23:16:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611607#M225709</guid>
      <dc:creator />
      <dc:date>2014-03-24T23:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611608#M225710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Morning Juan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found out the problem that makes your example incompatible with my data...&lt;/P&gt;&lt;P&gt;When you exported the data to Excel, you have deleted 2012 data, therefore it remains only 2013 in the file, and like that your example did work, but in my data with 2012 and possible other Years, it doesn´t work.&lt;/P&gt;&lt;P&gt;Any suggestions to solve this? I´ve tried a million possibilities, and nothing solve it!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;BS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 10:13:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611608#M225710</guid>
      <dc:creator />
      <dc:date>2014-03-25T10:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611609#M225711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now you have two years...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2014 12:24:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611609#M225711</guid>
      <dc:creator>jolivares</dc:creator>
      <dc:date>2014-03-25T12:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611610#M225712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much for your help. Your example is working just fine! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;Just tell me something... How did you aggregate the data to date? When I first send you my sample Qvw, the data wasn´t aggregated. Did you use "Group by" in script with Sum(Values) as Sales (...) Group by Date? Or did you done that in Excel when you exported the data?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for your help and patience!&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Bs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 16:15:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611610#M225712</guid>
      <dc:creator />
      <dc:date>2014-03-26T16:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611611#M225713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just simple export your data to excel and re-import to QV, that's it!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really do that to assure that the data is correct and don't have a missing ones. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 16:21:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611611#M225713</guid>
      <dc:creator>jolivares</dc:creator>
      <dc:date>2014-03-26T16:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611612#M225714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In fact, your example works just fine (That´s why I marked it as Correct Answer), however when deploy it to my data, the first two rows are messed up... First Row (Jan) shows Jan and Feb sum, the second row (Feb) shows just Feb, after that it´s all fine. This continues even when Day Dimension is expanded.&amp;nbsp; All days are fine, but sub-totals(with January expanded) show Jan + Feb, then Feb (witch is collapsed) stays showing just Feb, after that all values are fine!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 17:55:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611612#M225714</guid>
      <dc:creator />
      <dc:date>2014-03-26T17:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611613#M225715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that your data has some trouble, try to purge it.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you can export your data to an excel file or a txt and reload.&amp;nbsp; See what happens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where that data come from?&amp;nbsp; Try to post raw data in order I can see it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2014 18:51:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611613#M225715</guid>
      <dc:creator>jolivares</dc:creator>
      <dc:date>2014-03-26T18:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611614#M225716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Juan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the Excel File, with non aggregated Dummy Data as it comes from client (I cannot send original Data, so I put "1" in every field). I don´t think that there is any problem with the data. It´s just a Date, and 3 fields, where the calculations will be A-B-C in this case.&lt;/P&gt;&lt;P&gt;I´ve tried to aggregate it in Script, doing "Sum(A-B-C) as Sales (...) group by Date", and also tried in formula, (A-B-C), substituting "Sales". Always shows it as I said it above. Wrong values in Jan, and Feb...&lt;/P&gt;&lt;P&gt;Dummy Data: &lt;A href="https://community.qlik.com/docs/DOC-6202"&gt;DummyData.xlsx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;BS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 10:48:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611614#M225716</guid>
      <dc:creator />
      <dc:date>2014-03-27T10:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: Rangesum with two Dimensions</title>
      <link>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611615#M225717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just Solved it!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You were right! It was a misplaced value that was messing the data! As I put it in the right date order, the error was gone... Finally!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your help, time and patience!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;BS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 12:44:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Rangesum-with-two-Dimensions/m-p/611615#M225717</guid>
      <dc:creator />
      <dc:date>2014-03-27T12:44:15Z</dc:date>
    </item>
  </channel>
</rss>

