<?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: Alternative to using Set within an Aggr in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897653#M1012873</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Important to realize is that the set analysis defines the selections, in this case, of client names who meet the condition. If those 'selected' clients also have sales in an other industry, those will be included in the results&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Apr 2015 19:49:14 GMT</pubDate>
    <dc:creator>stigchel</dc:creator>
    <dc:date>2015-04-24T19:49:14Z</dc:date>
    <item>
      <title>Alternative to using Set within an Aggr</title>
      <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897644#M1012862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table with two dimensions and one expression: Client.Name, Industry, sum(Revenue)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to adjust my dimensions to only show clients in Industry 'A' who have &amp;lt;$1000 in revenue.&amp;nbsp; &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I currently do this using two dimensions and Suppress Null:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(aggr(sum(Revenue),Client.Name)&amp;lt;1000,Client.Name)&lt;/P&gt;&lt;P&gt;=if(Industry='A',Industry) [I hide this column]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to do this using only a single dimension?&amp;nbsp; The trouble i'm having is that I would normally use set analysis to explicitly define Industry, but my understanding is you can't use set within the Aggr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ultimately want to create a table with one calculated dimension, Client.Name, defined as:&amp;nbsp; If Client's Revenue &amp;gt;=1000 OR [Client's Revenue &amp;lt; 1000 AND Industry = 'A'], then show Client.&amp;nbsp; I'm having a lot of difficulty getting this in a table.&amp;nbsp; Greatly appreciate any help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 15:47:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897644#M1012862</guid>
      <dc:creator />
      <dc:date>2015-04-23T15:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to using Set within an Aggr</title>
      <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897645#M1012863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The opposite doesn't work, i.e., Aggr doesn't work the way you would expect within set analysis, but set will work within Aggr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But for your case, you can try something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG style="text-decoration: line-through;"&gt;=If(Aggr(Sum(Revenue), Client.Name)&amp;lt;1000 and Industry = 'A', Client.Name)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #339966;"&gt;=If((Aggr(Sum(Revenue), Client.Name) &amp;gt;= 1000) or (&lt;/SPAN&gt;&lt;STRONG style="color: #339966; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Aggr(Sum(Revenue), Client.Name) &amp;lt; 1000 and Industry = 'A'), Client.Name)&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;HTH&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 16:23:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897645#M1012863</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-04-23T16:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to using Set within an Aggr</title>
      <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897646#M1012864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have used &lt;/P&gt;&lt;P&gt;Customer as Dimension&lt;/P&gt;&lt;P&gt;with below expression...&lt;/P&gt;&lt;P&gt;Change According to your need..&lt;/P&gt;&lt;P&gt;Aggr(IF(SUM({&amp;lt;Brand = {'B4'}&amp;gt;}Sales)&amp;gt;=10000, SUM({&amp;lt;Brand = {'B4'}&amp;gt;}Sales)),Customer,Brand)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 16:25:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897646#M1012864</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-04-23T16:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to using Set within an Aggr</title>
      <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897647#M1012865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like to avoid calculated dimensions and do the restriction in the expression instead. In your case something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Client.Name&lt;/SPAN&gt;={'=Aggr(Sum(Sales),Customer)&amp;gt;=1000'}&amp;gt;+&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Client.Name&lt;/SPAN&gt;={'=Aggr(Sum({&amp;lt;Industry={"A"}&amp;gt;} Sales),Customer)&amp;lt;1000'}&amp;gt;} Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And just &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Client.Name as Dimension&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 16:51:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897647#M1012865</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-04-23T16:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to using Set within an Aggr</title>
      <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897648#M1012866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, this is closest to working.&amp;nbsp; I had already tried Sunindia's suggestion, but it didn't work --- for some reason, Qlikview doesnt like these "or" statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tested your formula by making two tables and then comparing against your aggregate table:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Table 1 has dimension:&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =if(aggr(sum(Revenue),Client.Name)&amp;gt;=1000,Client.Name))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Table 2 has the dimensions i originally noted:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =if(aggr(sum(Revenue),Client.Name)&amp;lt;1000,Client.Name)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =if(Industry='A',Industry)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your aggregate table correctly brings in all records from my Table 1 and Table 2 ... however, it also brings in records with &amp;lt;$1000 revenue that are in Industry B .. not sure why this occurs as the set analysis explicitly says Industry A ... any idea why this would occur?&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 19:47:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897648#M1012866</guid>
      <dc:creator />
      <dc:date>2015-04-23T19:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to using Set within an Aggr</title>
      <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897649#M1012867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I realized that QVW is ignoring part of your code in bold below ... I get the same results whether I include / exclude it or change the value of A&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Sum(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;{&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Client.Name&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;={'=Aggr(Sum(Sales),Customer)&amp;gt;=1000'}&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;+&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; &amp;lt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Client.Name&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;={'=Aggr(Sum(&lt;STRONG&gt;{&amp;lt;Industry={"A"}&amp;gt;}&lt;/STRONG&gt; Sales),Customer)&amp;lt;1000'}&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 19:58:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897649#M1012867</guid>
      <dc:creator />
      <dc:date>2015-04-23T19:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to using Set within an Aggr</title>
      <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897650#M1012868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's strange, are you sure these customers don't (also) belong to Industry A?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've made a test qvw and it does include Customers from the selected Industry and no others.See attached&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 10:13:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897650#M1012868</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-04-24T10:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to using Set within an Aggr</title>
      <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897651#M1012870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Thank you for confirming.&amp;nbsp; Client and Industry actually have a one-to-many relationship ...i.e., Client 1 can have $x revenues tied to Industry A, and $y revenues tied to Industry B.&amp;nbsp; Would that impact formula?&amp;nbsp; Seemed to me like it should still work...&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 17:28:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897651#M1012870</guid>
      <dc:creator />
      <dc:date>2015-04-24T17:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to using Set within an Aggr</title>
      <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897652#M1012872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's what's happening...I used the same dimension / expression as you outlined.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dimension: Client.Name&lt;/P&gt;&lt;P&gt;Expression: &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em; font-weight: inherit; font-style: inherit;"&gt;Sum(&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em; font-weight: inherit; font-style: inherit;"&gt;{&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em; font-weight: inherit; font-style: inherit;"&gt;Client.Name&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em; font-weight: inherit; font-style: inherit;"&gt;={'=Aggr(Sum(Sales),Customer)&amp;gt;=1000'}&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; font-style: inherit; line-height: 1.5em;"&gt;+&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em; font-style: inherit;"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em; font-style: inherit;"&gt;Client.Name&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em; font-weight: inherit; font-style: inherit;"&gt;={'=Aggr(Sum({&amp;lt;Industry={"A"}&amp;gt;} Sales),Customer)&amp;lt;1000'}&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; font-style: inherit; font-weight: inherit; line-height: 1.5em;"&gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; font-style: inherit; font-weight: inherit; line-height: 1.5em;"&gt;Sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regardless of what is in the expression's set analysis, the number of rows remains the same ... e.g., if I change the first set condition to be a very large number "&amp;gt;=1000000000000" instead of "&amp;gt;=1000", the number of rows is not impacted ... the only thing that changes is the value of the expression (for example, a client with $2000 now shows as $0 instead of simply disappearing from the table)&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea how to adjust?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 18:58:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897652#M1012872</guid>
      <dc:creator />
      <dc:date>2015-04-24T18:58:37Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to using Set within an Aggr</title>
      <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897653#M1012873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Important to realize is that the set analysis defines the selections, in this case, of client names who meet the condition. If those 'selected' clients also have sales in an other industry, those will be included in the results&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 19:49:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897653#M1012873</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-04-24T19:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to using Set within an Aggr</title>
      <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897654#M1012875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As a Calculated Dimension I think it would be:&lt;/P&gt;&lt;P&gt;=aggr(only({&amp;lt;Customer={"=sum(Sales)&amp;gt;1000"}&amp;gt;+&amp;lt;Industry={A}&amp;gt;}Customer),Customer)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the &amp;lt;1000 test is unnecessary. They qualify either as being above 1000 or Industry A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 20:15:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897654#M1012875</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-04-24T20:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to using Set within an Aggr</title>
      <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897655#M1012876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks so much, this worked&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 22:02:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897655#M1012876</guid>
      <dc:creator />
      <dc:date>2015-04-24T22:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: Alternative to using Set within an Aggr</title>
      <link>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897656#M1012878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think my data set is just a little funky and not agreeing with it ... b/c as you said, your sample works ... thanks though, appreciate the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 22:03:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Alternative-to-using-Set-within-an-Aggr/m-p/897656#M1012878</guid>
      <dc:creator />
      <dc:date>2015-04-24T22:03:09Z</dc:date>
    </item>
  </channel>
</rss>

