<?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 sum in different items in the same row in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264963#M99582</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi,&lt;/P&gt;&lt;P&gt;I'm not use to understand. You probably have to use a set analysis.&lt;/P&gt;&lt;P&gt;Could you give an example?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jan 2012 14:37:58 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-01-12T14:37:58Z</dc:date>
    <item>
      <title>sum in different items in the same row</title>
      <link>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264957#M99576</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 pivot table with many rows and colums. The first one has a list of products, the second one has date for each specific product an d the third column has valus in format money. What I need to do? I need to sum. Item 1 of the first product with the item 1 of the second product. Then a new row would be Item 2 of the first product with the item 2 of the second product.&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, 10 Jan 2012 23:15:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264957#M99576</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-01-10T23:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: sum in different items in the same row</title>
      <link>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264958#M99577</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 not sure it can be done by chart. But let try via below script&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;[Data]:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Product&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; LeadTime&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; Value&lt;/P&gt;&lt;P&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 61 - 90 Days&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 10000&lt;/P&gt;&lt;P&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 91 - 120 Days&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 5000&lt;/P&gt;&lt;P&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 121 + Days&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 12000&lt;/P&gt;&lt;P&gt;A&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; Seriously Past Due&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 4000&lt;/P&gt;&lt;P&gt;B&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 61 - 90 Days&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 15000&lt;/P&gt;&lt;P&gt;B&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 91 - 120 Days&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 8000&lt;/P&gt;&lt;P&gt;B&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 121 + Days&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 2000&lt;/P&gt;&lt;P&gt;B&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; Seriously Past Due&amp;nbsp;&amp;nbsp;&amp;nbsp; ,&amp;nbsp;&amp;nbsp;&amp;nbsp; 11000];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types:&lt;/P&gt;&lt;P&gt;LOAD fieldvalue('Product',iterno()) as Product&lt;/P&gt;&lt;P&gt;AUTOGENERATE 1&lt;/P&gt;&lt;P&gt;WHILE len(fieldvalue('Product',iterno()));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Totals:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt; 'Total' as TypeGroup,&lt;/P&gt;&lt;P&gt; Product&lt;/P&gt;&lt;P&gt;RESIDENT Types;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (Totals)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt; Product as TypeGroup,&lt;/P&gt;&lt;P&gt; Product&lt;/P&gt;&lt;P&gt;RESIDENT Types;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE Types;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;Take TypeGroup and LeadTime as dimension, SUM(Value) as expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the sample attached file also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sokkorn Cheav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 01:15:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264958#M99577</guid>
      <dc:creator>Sokkorn</dc:creator>
      <dc:date>2012-01-11T01:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: sum in different items in the same row</title>
      <link>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264959#M99578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply, this its really works, but Im trying with &lt;STRONG&gt;div&lt;/STRONG&gt; and didn't work. How can I do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 13:51:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264959#M99578</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-01-11T13:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: sum in different items in the same row</title>
      <link>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264960#M99579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any Idea?&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, 11 Jan 2012 15:01:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264960#M99579</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-01-11T15:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: sum in different items in the same row</title>
      <link>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264961#M99580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Div&lt;/STRONG&gt; require 2 values. In this case how can I do it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 11:58:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264961#M99580</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-01-12T11:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: sum in different items in the same row</title>
      <link>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264962#M99581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 13:16:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264962#M99581</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-01-12T13:16:58Z</dc:date>
    </item>
    <item>
      <title>sum in different items in the same row</title>
      <link>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264963#M99582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi,&lt;/P&gt;&lt;P&gt;I'm not use to understand. You probably have to use a set analysis.&lt;/P&gt;&lt;P&gt;Could you give an example?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 14:37:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264963#M99582</guid>
      <dc:creator />
      <dc:date>2012-01-12T14:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: sum in different items in the same row</title>
      <link>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264964#M99583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The answer is on the top. But now I need to do the same thing but with DIV numeric fuction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 14:42:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264964#M99583</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-01-12T14:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: sum in different items in the same row</title>
      <link>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264965#M99584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I hope you understand the question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 15:56:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/sum-in-different-items-in-the-same-row/m-p/264965#M99584</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2012-01-12T15:56:05Z</dc:date>
    </item>
  </channel>
</rss>

