<?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: Problem with columns and Sum Total in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572221#M213199</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is because you are referencing the same column as the expression. Therefore since there is no value yet for that column, it will return null. I think what you want to do is decrease each number by 1, for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;column(4)*column(8)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;column(4)*column(7)&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, 27 Jan 2014 13:35:06 GMT</pubDate>
    <dc:creator>jerem1234</dc:creator>
    <dc:date>2014-01-27T13:35:06Z</dc:date>
    <item>
      <title>Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572220#M213198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have many Expressions. Many of them works fine but some columns shows "-" and doesn't sum too whe the values are correct.&lt;/P&gt;&lt;P&gt;I attached a file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 13:24:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572220#M213198</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2014-01-27T13:24:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572221#M213199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is because you are referencing the same column as the expression. Therefore since there is no value yet for that column, it will return null. I think what you want to do is decrease each number by 1, for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;column(4)*column(8)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;should be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;column(4)*column(7)&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, 27 Jan 2014 13:35:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572221#M213199</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2014-01-27T13:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572222#M213200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The expression below for "Cantidad &amp;lt; 1 AÑO" refers to a missing field.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="expr.JPG.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/52154_expr.JPG.jpg" style="width: 620px; height: 51px;" /&gt;&lt;/P&gt;&lt;P&gt;Your data model does not have a field Nuevo1, but does have Nuevo, nuevo3, nuevo4&lt;/P&gt;&lt;P&gt; Field names is QlikView and data are all case sensitive so a filed called nuevo3 is a different field to Nuevo3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you will need to use Aggr() for the sums in the if statement to define which dimensions the sum is being calculated for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&lt;SPAN style="color: #0000ff;"&gt;if&lt;/SPAN&gt; (Nuevo = 1, If( (aggr(Sum(cantidad_oh), articulo ) - aggr(Sum(patrimonio), articulo )) &amp;lt; 0, '0', Sum(cantidad_oh) - Sum(patrimonio)), '0') &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 13:36:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572222#M213200</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2014-01-27T13:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572223#M213201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pablo,&lt;/P&gt;&lt;P&gt;I see that the expression "Cantidad &amp;lt; 1 AÑO" is using field Nuevo1 which doesn't exist.&amp;nbsp; Try to fix it first.&amp;nbsp; Other expressions maybe refer to this one. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 13:37:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572223#M213201</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-27T13:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572224#M213202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jerem I think the expression is ok. Its Column 4 * Column 8&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Column(4)&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;&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;&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;&amp;nbsp;&amp;nbsp; Column (8)&lt;/P&gt;&lt;P&gt;If(Sum(cantidad_oh) = 0, costo2, Sum(valor_oh)/Sum(cantidad_oh)) * (if (nuevo = 1, If(Sum(cantidad_oh) - Sum(patrimonio) &amp;lt; 0, '0', Sum(cantidad_oh) - Sum(patrimonio)), '0')).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Colin And Michael My Mistake I was changing the field. Now its ok. Why the totals gives 0? I attached a new example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 13:53:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572224#M213202</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2014-01-27T13:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572225#M213203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can see that the value of &lt;STRONG&gt;nuevo&lt;/STRONG&gt; is always 0.&amp;nbsp; As a result, column 8 is always zero, and colaumn(4) * column(8) is 0 as result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 14:08:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572225#M213203</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-27T14:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572226#M213204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your Reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is because exist reduction data and have a file with low weight. Now you can see 0 and 1. My totals are 0 You know could be?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 14:21:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572226#M213204</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2014-01-27T14:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572227#M213205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The nuevo is still only 0.&amp;nbsp; Bu I tried something, just for testing, changed the expression in column 8 to&lt;/P&gt;&lt;P&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;nuevo&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; = &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: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;cantidad_oh&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: #800000; font-size: 8pt;"&gt;patrimonio&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &amp;lt; 0, '0', &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: #800000; font-size: 8pt;"&gt;cantidad_oh&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: #800000; font-size: 8pt;"&gt;patrimonio&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)), '0')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;and, the result in the next column change to non-0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 14:28:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572227#M213205</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-27T14:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Re: Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572228#M213206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry wrong file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried your formula but gave me an error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 14:44:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572228#M213206</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2014-01-27T14:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572229#M213207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For some reason the "0" was lost in my post:&lt;/P&gt;&lt;P&gt;if(nuevo=0...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for the total - to make it work your expression must be &lt;STRONG&gt;aggregated&lt;/STRONG&gt; function.&amp;nbsp; Currently it is not.&amp;nbsp; This is a correct one:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sum(&lt;/STRONG&gt;&lt;STRONG&gt;aggr(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;if (nuevo = 1, If((aggr(Sum(cantidad_oh),articulo) - aggr(Sum(patrimonio),articulo)) &amp;lt; 0, '0', Sum(cantidad_oh) - Sum(patrimonio)), '0')&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;, articulo))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 14:58:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572229#M213207</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-27T14:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572230#M213208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many Thanks Michael.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried of follow with the others expression but doesn´t work. Can you help me with the big one (Cantidad Entre 0 - 1 AÑO), And can follow with the others.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 18:13:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572230#M213208</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2014-01-27T18:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572231#M213209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll give you this one, but you have to figure out the rest.. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First, I re-wrote the expression to make it look simpler.&amp;nbsp; Logic is the same, please verify:&lt;BR /&gt;if(Column(8)=0 AND Column(6))&amp;gt;0 AND (Sum(cantidad2_oh)-Sum(patrimonio))&amp;gt;=0 AND (Sum(cantidad2_oh)-Sum(patrimonio))&amp;lt;=Column(6), (Sum(cantidad_oh)-Sum(patrimonio)), 0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next, I replaced Column(6) and Column(8) with their actual expressions:&lt;/P&gt;&lt;P&gt;if(&lt;STRONG&gt;if (nuevo = 1, If((aggr(Sum(cantidad_oh),articulo) - aggr(Sum(patrimonio),articulo)) &amp;lt; 0, '0', Sum(cantidad_oh) - Sum(patrimonio)), '0')&lt;/STRONG&gt;=0 AND &lt;STRONG&gt;Sum(consumo)&lt;/STRONG&gt;&amp;gt;0 AND (Sum(cantidad2_oh)-Sum(patrimonio))&amp;gt;=0 AND (Sum(cantidad2_oh)-Sum(patrimonio))&amp;lt;=&lt;STRONG&gt;Sum(consumo)&lt;/STRONG&gt;, (Sum(cantidad_oh)-Sum(patrimonio)), 0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far, it returns the same result as your expression.&lt;/P&gt;&lt;P&gt;And, the last step was the same as before, adding sum(aggr()):&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sum(aggr(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;if(if (nuevo = 1, If((aggr(Sum(cantidad_oh),articulo) - aggr(Sum(patrimonio),articulo)) &amp;lt; 0, '0', Sum(cantidad_oh) - Sum(patrimonio)), '0')=0 AND Sum(consumo)&amp;gt;0 AND (Sum(cantidad2_oh)-Sum(patrimonio))&amp;gt;=0 AND (Sum(cantidad2_oh)-Sum(patrimonio))&amp;lt;=Sum(consumo), (Sum(cantidad_oh)-Sum(patrimonio)), 0)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;, articulo))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 19:21:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572231#M213209</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-27T19:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572232#M213210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats the idea many thanks Michael!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jan 2014 20:10:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572232#M213210</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2014-01-27T20:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572233#M213211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have proved some formulas but I fail to multiply columns. Can you help me with this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried first:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Column(4) * Column(8) nothing&lt;/P&gt;&lt;P&gt;Sum(Column(4) * Column(8)) Exceed Memory&lt;/P&gt;&lt;P&gt;Sum(Column(4)) * Sum(Column(8)) Exceed Memory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Aggr I fail too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 17:52:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572233#M213211</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2014-01-28T17:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572234#M213212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My formula It was fine. I dont Know QlikView Displayed a $ as total (Weird Right?). When Export to excel Appear the final result.&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="152"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="17" width="152"&gt;$ 1.139.920.299.839.620&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I attached the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 18:44:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572234#M213212</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2014-01-28T18:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with columns and Sum Total</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572235#M213213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have every thing is good on your side only one presentation setting that i fix in application attached with this text.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jan 2014 19:04:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-columns-and-Sum-Total/m-p/572235#M213213</guid>
      <dc:creator />
      <dc:date>2014-01-28T19:04:11Z</dc:date>
    </item>
  </channel>
</rss>

