<?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: Aggr by calculated field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379420#M420723</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Aggr(Sum(if(Value&amp;lt;=100,1,if(Value&amp;lt;=500,2,3))),GroupName&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Sep 2017 11:22:36 GMT</pubDate>
    <dc:creator>shraddha_g</dc:creator>
    <dc:date>2017-09-08T11:22:36Z</dc:date>
    <item>
      <title>Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379419#M420722</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 need to aggregate values by two dimensions where one of them is calculated.&lt;/P&gt;&lt;P&gt;Is it possible to create?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;GroupName, Value&lt;/P&gt;&lt;P&gt;Group1, 100&lt;/P&gt;&lt;P&gt;Group1, 300&lt;/P&gt;&lt;P&gt;Group2, 500&lt;/P&gt;&lt;P&gt;Group2, 900&lt;/P&gt;&lt;P&gt;Group2, 150&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression is&lt;/P&gt;&lt;P&gt;Aggr(Sum(Value),GroupName&lt;/P&gt;&lt;P&gt;,if(Value&amp;lt;=100,1,if(Value&amp;lt;=500,2,3))&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 11:09:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379419#M420722</guid>
      <dc:creator>maxsheva</dc:creator>
      <dc:date>2017-09-08T11:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379420#M420723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Aggr(Sum(if(Value&amp;lt;=100,1,if(Value&amp;lt;=500,2,3))),GroupName&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 11:22:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379420#M420723</guid>
      <dc:creator>shraddha_g</dc:creator>
      <dc:date>2017-09-08T11:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379421#M420724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try to create the calculated dimension, Is this you looking&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;if(Value &amp;lt;= 100,1,&lt;/P&gt;&lt;P&gt;if(Value &amp;lt;= 500,2,3)) as Flag;&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;GroupName, Value&lt;/P&gt;&lt;P&gt;Group1, 100&lt;/P&gt;&lt;P&gt;Group1, 300&lt;/P&gt;&lt;P&gt;Group2, 500&lt;/P&gt;&lt;P&gt;Group2, 900&lt;/P&gt;&lt;P&gt;Group2, 150&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And on UI&lt;/P&gt;&lt;P&gt;Dim:- GroupName, Flag&lt;/P&gt;&lt;P&gt;Expression:- =aggr(sum(Value),GroupName,Flag)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 11:25:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379421#M420724</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2017-09-08T11:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379422#M420725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your solution. It is correct according to the performance and implementation.&lt;/P&gt;&lt;P&gt;Unfortunately &lt;SPAN style="font-size: 10pt;"&gt;I can't create flag in script according to the real data model.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I tried before but correct result is only on the fly calculation.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Can I do this kind of aggregation on the &lt;/SPAN&gt;front-end side&lt;SPAN style="font-size: 10pt;"&gt;?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 11:34:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379422#M420725</guid>
      <dc:creator>maxsheva</dc:creator>
      <dc:date>2017-09-08T11:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379423#M420726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shraddha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As the result I need aggregated sum of values instead subgroup like in your expression.&lt;BR /&gt;Sorry for my data example. The second calculated dimension should be built on the different value.&lt;/P&gt;&lt;P&gt;Like this&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Expression is&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Aggr(Sum(Value1),GroupName&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;,if(Value2&amp;lt;=100,1,if(Value2&amp;lt;=500,2,3))&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 11:39:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379423#M420726</guid>
      <dc:creator>maxsheva</dc:creator>
      <dc:date>2017-09-08T11:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379424#M420727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its a single flag why not to create this in the Data model and refresh the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 11:47:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379424#M420727</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2017-09-08T11:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379425#M420728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the expected output for the data which you shared? Can you give one example how actually calculation need to happen?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 11:51:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379425#M420728</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-09-08T11:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379426#M420729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;I added an ID field to your data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD *, RecNo() as ID Inline [&lt;/P&gt;&lt;P&gt;GroupName, Value&lt;/P&gt;&lt;P&gt;Group1, 100&lt;/P&gt;&lt;P&gt;Group1, 300&lt;/P&gt;&lt;P&gt;Group2, 500&lt;/P&gt;&lt;P&gt;Group2, 900&lt;/P&gt;&lt;P&gt;Group2, 150&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now we can make this straight table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0" style="font-size: 9pt;"&gt;&lt;TBODY&gt;&lt;TR bgcolor="#f5f5f5"&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;GroupName&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;New Dim&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;sum(Value)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;Count(ID)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR bgcolor="#f5f5f5"&gt;&lt;TD bgcolor="#f5f5f5"&gt; &lt;/TD&gt;&lt;TD bgcolor="#f5f5f5"&gt; &lt;/TD&gt;&lt;TD bgcolor="#f5f5f5"&gt;&lt;STRONG&gt;1950 &lt;/STRONG&gt;&lt;/TD&gt;&lt;TD bgcolor="#f5f5f5"&gt;&lt;STRONG&gt;5 &lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Group1&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;1&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;100&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;1&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Group1&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;2&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;300&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;1&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Group2&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;2&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;650&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;2&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Group2&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;3&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;900&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;1&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;New Dim&lt;/EM&gt; is the calculated dimension:&lt;/P&gt;&lt;P&gt;Match(-1,aggr(sum(Value),ID)&amp;lt;=100,aggr(sum(Value),ID)&amp;lt;=500,-1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 13:03:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379426#M420729</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2017-09-08T13:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379427#M420730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Output is&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Group1 | 1 | 100&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Group1 | 2 | 300&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Group2 | 2 | 650&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Gruop2 | 3 | 900 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same as Andrew's&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 13:16:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379427#M420730</guid>
      <dc:creator>maxsheva</dc:creator>
      <dc:date>2017-09-08T13:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379428#M420731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But if this calculated dimension is not integer?&lt;/P&gt;&lt;P&gt;It is string value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 13:20:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379428#M420731</guid>
      <dc:creator>maxsheva</dc:creator>
      <dc:date>2017-09-08T13:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379429#M420732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max,&lt;/P&gt;&lt;P&gt;&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; Combine the Pick and Match functions to give string values to the dimension.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New Dim=&lt;/P&gt;&lt;P&gt;Pick(&lt;/P&gt;&lt;P&gt;Match(-1,aggr(sum(Value),ID)&amp;lt;=100,aggr(sum(Value),ID)&amp;lt;=500,-1),// this line is as previous returning 1,2 or 3&lt;/P&gt;&lt;P&gt;'Huey','Dewie','Louie')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0" style="font-size: 9pt;"&gt;&lt;TBODY&gt;&lt;TR bgcolor="#f5f5f5"&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;GroupName&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;New Dim&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;sum(Value)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;Count(ID)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR bgcolor="#f5f5f5"&gt;&lt;TD bgcolor="#f5f5f5"&gt; &lt;/TD&gt;&lt;TD bgcolor="#f5f5f5"&gt; &lt;/TD&gt;&lt;TD bgcolor="#f5f5f5"&gt;&lt;STRONG&gt;1950 &lt;/STRONG&gt;&lt;/TD&gt;&lt;TD bgcolor="#f5f5f5"&gt;&lt;STRONG&gt;5 &lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Group1&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Huey&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;100&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;1&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Group1&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Dewie&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;300&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;1&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Group2&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Dewie&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;650&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;2&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Group2&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Louie&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;900&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;1&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 13:25:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379429#M420732</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2017-09-08T13:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379430#M420733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like this ?&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/175947_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 13:28:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379430#M420733</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2017-09-08T13:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379431#M420734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would you please write an expression?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 14:02:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379431#M420734</guid>
      <dc:creator>maxsheva</dc:creator>
      <dc:date>2017-09-08T14:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379432#M420735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As You see it&lt;/P&gt;&lt;P&gt;Pivot Table :&lt;/P&gt;&lt;P&gt;1 Dimension&lt;/P&gt;&lt;P&gt;1 Calculated Dimension&lt;/P&gt;&lt;P&gt;1 Expression&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 14:10:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379432#M420735</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2017-09-08T14:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379433#M420736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use straight table. That's why &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;I need to aggregate values by two dimensions but where one of them is calculated&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 14:14:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379433#M420736</guid>
      <dc:creator>maxsheva</dc:creator>
      <dc:date>2017-09-08T14:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379434#M420737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Straight Table&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/175957_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 14:18:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379434#M420737</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2017-09-08T14:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379435#M420738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My mistake I didn't quite explain my goal.&lt;/P&gt;&lt;P&gt;I added Value2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;GroupName, Value,Value2&lt;/P&gt;&lt;P&gt;Group1, 100, 10&lt;/P&gt;&lt;P&gt;Group1, 300, 20&lt;/P&gt;&lt;P&gt;Group2, 500, 10&lt;/P&gt;&lt;P&gt;Group2, 400, 20&lt;/P&gt;&lt;P&gt;Group2, 900, 15&lt;/P&gt;&lt;P&gt;Group2, 150, 10&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need sum(Value1)*sum(Value2) &lt;SPAN style="font-size: 13.3333px;"&gt;aggregated by GroupName and Calculated dimension:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;if(Value&amp;lt;=100,'Subgroup1',if(Value&amp;lt;=500,'Subgroup2','Subgroup3'))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;If calculates it without Aggr the result for Group2,Subgroup2 = (500+400+150)*(10+20+10)=42 000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px; text-decoration: underline;"&gt;I need 500*10+400*20+150*10=14 500&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 14:55:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379435#M420738</guid>
      <dc:creator>maxsheva</dc:creator>
      <dc:date>2017-09-08T14:55:36Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379436#M420739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/175969_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 15:06:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379436#M420739</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2017-09-08T15:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379437#M420740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;TABLE bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0" style="font-size: 9pt;"&gt;&lt;TBODY&gt;&lt;TR bgcolor="#f5f5f5"&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;GroupName&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;Subgroup&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;sum(Value*Value2)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR bgcolor="#f5f5f5"&gt;&lt;TD bgcolor="#f5f5f5"&gt; &lt;/TD&gt;&lt;TD bgcolor="#f5f5f5"&gt; &lt;/TD&gt;&lt;TD bgcolor="#f5f5f5"&gt;&lt;STRONG&gt;35000 &lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Group1&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Subgroup1&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;1000&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Group1&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Subgroup2&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;6000&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Group2&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Subgroup2&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;14500&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Group2&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Subgroup3&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;13500&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Subgroup dim =&lt;/P&gt;&lt;P&gt;='Subgroup' &amp;amp; Match(-1,aggr(sum(Value),ID)&amp;lt;=100,aggr(sum(Value),ID)&amp;lt;=500,-1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 15:17:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379437#M420740</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2017-09-08T15:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: Aggr by calculated field</title>
      <link>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379438#M420741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sometimes hard things can be very easy &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;Thank you very much Antonio!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Sep 2017 15:27:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggr-by-calculated-field/m-p/1379438#M420741</guid>
      <dc:creator>maxsheva</dc:creator>
      <dc:date>2017-09-08T15:27:55Z</dc:date>
    </item>
  </channel>
</rss>

