<?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 Duplicates - Need an aggr function or set analysis - help?? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230320#M502706</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;To achieve what you want I usualy create a flag in the order table to identify the first purchase, then in the chart you can filter using the flag.&lt;/P&gt;&lt;P&gt;How to create the flag ?&lt;/P&gt;&lt;P&gt;Try something like this&lt;/P&gt;&lt;P&gt;LEFT JOIN (OrderTable)&lt;BR /&gt;LOAD Id, Min(Date) as FirstDate&lt;BR /&gt;RESIDENT OrderTable&lt;BR /&gt;Group By Id ;&lt;BR /&gt;&lt;BR /&gt;OrderTable2:&lt;BR /&gt;LOAD * , If(Date=FirstDate ,1 , 0) as Flag&lt;BR /&gt;Resident OrderTable;&lt;BR /&gt;Drop Table OrderTable;&lt;/P&gt;&lt;P&gt;Maybe there is a problem if a customer orders twice the same date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;JJJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Oct 2010 20:29:16 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-10-06T20:29:16Z</dc:date>
    <item>
      <title>Duplicates - Need an aggr function or set analysis - help??</title>
      <link>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230318#M502704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;Lets say I have two tables. One for customers and one for orders. In the customers table there is no date, but in the orders table there is an order date. I have a chart where I count cumulative order ids by their order date. I would now like to add in logic to show my cumulative customers as well- but since a customer may have many orders, I am only interested in counting their customer id when they first order. I have the following statement written which would return the first order date for a customer id:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;aggr(min(ORDER_DATE),Customer_ID)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Now I am having trouble with the count part. I only want to count the customer id when the order date = aggr(min(ORDER_DATE),Customer_ID) , I have tried something like the following but its not working out:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;COUNT(IF(aggr(min(ORDER_DATE),Customer_ID)=ORDER_DATE,Customer_ID))&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Any suggestions or advice on what I am doing wrong?? The chart only uses the order date dimension.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Julia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Oct 2010 20:09:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230318#M502704</guid>
      <dc:creator />
      <dc:date>2010-10-06T20:09:35Z</dc:date>
    </item>
    <item>
      <title>Duplicates - Need an aggr function or set analysis - help??</title>
      <link>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230319#M502705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The expression looks pretty good to me. One thing I would try is reversing the conditionals. I don't know if it matters at all, but I always do the field = to the expression. So:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;COUNT(IF(ORDER_DATE=aggr(min(ORDER_DATE),Customer_ID),Customer_ID))&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Are you getting an error or just an incorrect result? Are you getting any value or is it null for everything?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Oct 2010 20:19:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230319#M502705</guid>
      <dc:creator />
      <dc:date>2010-10-06T20:19:59Z</dc:date>
    </item>
    <item>
      <title>Duplicates - Need an aggr function or set analysis - help??</title>
      <link>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230320#M502706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;To achieve what you want I usualy create a flag in the order table to identify the first purchase, then in the chart you can filter using the flag.&lt;/P&gt;&lt;P&gt;How to create the flag ?&lt;/P&gt;&lt;P&gt;Try something like this&lt;/P&gt;&lt;P&gt;LEFT JOIN (OrderTable)&lt;BR /&gt;LOAD Id, Min(Date) as FirstDate&lt;BR /&gt;RESIDENT OrderTable&lt;BR /&gt;Group By Id ;&lt;BR /&gt;&lt;BR /&gt;OrderTable2:&lt;BR /&gt;LOAD * , If(Date=FirstDate ,1 , 0) as Flag&lt;BR /&gt;Resident OrderTable;&lt;BR /&gt;Drop Table OrderTable;&lt;/P&gt;&lt;P&gt;Maybe there is a problem if a customer orders twice the same date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;JJJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Oct 2010 20:29:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230320#M502706</guid>
      <dc:creator />
      <dc:date>2010-10-06T20:29:16Z</dc:date>
    </item>
    <item>
      <title>Duplicates - Need an aggr function or set analysis - help??</title>
      <link>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230321#M502707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;Thanks for your help - sorry for the delay in answering - long weekend here in Canada. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;JJJ- This will not work as this needs to be dynamically calculated base on the users filter selections, so I need to do it in the back end of the chart.&lt;/P&gt;&lt;P&gt;NMiller- Getting an incorrect result would be the best way to put it. It seems to be working in some cases, but not in others. I tried putting it in a table just to see what was going on with the following statement (took out the count for testing purposes):&lt;/P&gt;&lt;P&gt;IF(ORDER_DATE=aggr(min(ORDER_DATE),Customer_ID),Customer_ID,'n/a'))&lt;/P&gt;&lt;P&gt;The dimensions I have in this table are Customer_ID and ORDER_DATE - so what I would expect to see is for a customer with multiple orders is a couple of rows with n/a and only one row with the customer id when the date is the minimum. I am getting this in some cases but in others I get all n/a's.....I can't seem to figure out why the IF statement works for some but not others.... &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Oct 2010 13:54:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230321#M502707</guid>
      <dc:creator />
      <dc:date>2010-10-12T13:54:44Z</dc:date>
    </item>
    <item>
      <title>Duplicates - Need an aggr function or set analysis - help??</title>
      <link>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230322#M502708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try placing just the Aggr() function in an expression and see if it is returning results for every Customer_ID. I believe only one row per Customer ID would be populated.&lt;/P&gt;&lt;P&gt;You may need a TOTAL modifier in your Min() function. Try:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;IF(ORDER_DATE=aggr(min(TOTAL ORDER_DATE),Customer_ID),Customer_ID,'n/a'))&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;It could be that the Aggr() is still calculating within the context of the dimensions. The TOTAL modifier should get past that. I'm not sure that is the problem though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Oct 2010 16:01:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230322#M502708</guid>
      <dc:creator />
      <dc:date>2010-10-12T16:01:15Z</dc:date>
    </item>
    <item>
      <title>Duplicates - Need an aggr function or set analysis - help??</title>
      <link>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230323#M502709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes I think I am doing something wrong in the Aggr() function. I want my data to be something like follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width:722pt;border-collapse:collapse;" width="963"&gt;&lt;COLGROUP&gt;&lt;COL style="width:71pt;mso-width-source:userset;mso-width-alt:3474;" width="95" /&gt;&lt;COL style="width:65pt;mso-width-source:userset;mso-width-alt:3181;" width="87" /&gt;&lt;COL style="width:84pt;mso-width-source:userset;mso-width-alt:4096;" width="112" /&gt;&lt;COL style="width:179pt;mso-width-source:userset;mso-width-alt:8740;" width="239" /&gt;&lt;COL style="width:323pt;mso-width-source:userset;mso-width-alt:15725;" width="430" /&gt;&lt;/COLGROUP&gt;&lt;TBODY&gt;&lt;TR style="height:15pt;"&gt;&lt;TD class="xl65" height="20" style="width:71pt;height:15pt;background-color:transparent;border:windowtext 0.5pt solid;" width="95"&gt;Customer ID&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext 0.5pt solid;border-left:windowtext;width:65pt;border-bottom:windowtext 0.5pt solid;background-color:transparent;" width="87"&gt;OrderID&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext 0.5pt solid;border-left:windowtext;width:84pt;border-bottom:windowtext 0.5pt solid;background-color:transparent;" width="112"&gt;OrderDate&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext 0.5pt solid;border-left:windowtext;width:179pt;border-bottom:windowtext 0.5pt solid;background-color:transparent;" width="239"&gt;aggr(min(OrderDate),CustomerID)&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext 0.5pt solid;border-left:windowtext;width:323pt;border-bottom:windowtext 0.5pt solid;background-color:transparent;" width="430"&gt;IF(OrderDate=aggr(min(OrderDate),CustomerID), 'first order','n/a')&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height:15pt;"&gt;&lt;TD class="xl65" height="20" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext 0.5pt solid;border-bottom:windowtext 0.5pt solid;height:15pt;background-color:transparent;"&gt;1&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;1&lt;/TD&gt;&lt;TD class="xl66" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;5/1/2010&lt;/TD&gt;&lt;TD class="xl66" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;5/1/2010&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;first order&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height:15pt;"&gt;&lt;TD class="xl65" height="20" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext 0.5pt solid;border-bottom:windowtext 0.5pt solid;height:15pt;background-color:transparent;"&gt;1&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;2&lt;/TD&gt;&lt;TD class="xl66" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;5/2/2010&lt;/TD&gt;&lt;TD class="xl66" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;5/1/2010&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;n/a&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height:15pt;"&gt;&lt;TD class="xl65" height="20" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext 0.5pt solid;border-bottom:windowtext 0.5pt solid;height:15pt;background-color:transparent;"&gt;1&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;3&lt;/TD&gt;&lt;TD class="xl66" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;5/3/2010&lt;/TD&gt;&lt;TD class="xl66" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;5/1/2010&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;n/a&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;But what I am actually getting is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width:722pt;border-collapse:collapse;" width="963"&gt;&lt;COLGROUP&gt;&lt;COL style="width:71pt;mso-width-source:userset;mso-width-alt:3474;" width="95" /&gt;&lt;COL style="width:65pt;mso-width-source:userset;mso-width-alt:3181;" width="87" /&gt;&lt;COL style="width:84pt;mso-width-source:userset;mso-width-alt:4096;" width="112" /&gt;&lt;COL style="width:179pt;mso-width-source:userset;mso-width-alt:8740;" width="239" /&gt;&lt;COL style="width:323pt;mso-width-source:userset;mso-width-alt:15725;" width="430" /&gt;&lt;/COLGROUP&gt;&lt;TBODY&gt;&lt;TR style="height:15pt;"&gt;&lt;TD class="xl65" height="20" style="width:71pt;height:15pt;background-color:transparent;border:windowtext 0.5pt solid;" width="95"&gt;Customer ID&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext 0.5pt solid;border-left:windowtext;width:65pt;border-bottom:windowtext 0.5pt solid;background-color:transparent;" width="87"&gt;OrderID&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext 0.5pt solid;border-left:windowtext;width:84pt;border-bottom:windowtext 0.5pt solid;background-color:transparent;" width="112"&gt;OrderDate&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext 0.5pt solid;border-left:windowtext;width:179pt;border-bottom:windowtext 0.5pt solid;background-color:transparent;" width="239"&gt;aggr(min(OrderDate),CustomerID)&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext 0.5pt solid;border-left:windowtext;width:323pt;border-bottom:windowtext 0.5pt solid;background-color:transparent;" width="430"&gt;IF(OrderDate=aggr(min(OrderDate),CustomerID), 'first order','n/a')&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height:15pt;"&gt;&lt;TD class="xl65" height="20" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext 0.5pt solid;border-bottom:windowtext 0.5pt solid;height:15pt;background-color:transparent;"&gt;1&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;1&lt;/TD&gt;&lt;TD class="xl66" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;5/1/2010&lt;/TD&gt;&lt;TD class="xl66" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;-&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;n/a&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height:15pt;"&gt;&lt;TD class="xl65" height="20" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext 0.5pt solid;border-bottom:windowtext 0.5pt solid;height:15pt;background-color:transparent;"&gt;1&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;2&lt;/TD&gt;&lt;TD class="xl66" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;5/2/2010&lt;/TD&gt;&lt;TD class="xl66" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;5/1/2010&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;n/a&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="height:15pt;"&gt;&lt;TD class="xl65" height="20" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext 0.5pt solid;border-bottom:windowtext 0.5pt solid;height:15pt;background-color:transparent;"&gt;1&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;3&lt;/TD&gt;&lt;TD class="xl66" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;5/3/2010&lt;/TD&gt;&lt;TD class="xl66" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;-&lt;/TD&gt;&lt;TD class="xl65" style="border-right:windowtext 0.5pt solid;border-top:windowtext;border-left:windowtext;border-bottom:windowtext 0.5pt solid;background-color:transparent;"&gt;n/a&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;I tried adding the TOTAL qualifier to the min expression but that doesn't seem to make a difference. &lt;IMG alt="Tongue Tied" src="http://community.qlik.com/emoticons/emotion-7.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Oct 2010 17:10:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230323#M502709</guid>
      <dc:creator />
      <dc:date>2010-10-12T17:10:09Z</dc:date>
    </item>
    <item>
      <title>Duplicates - Need an aggr function or set analysis - help??</title>
      <link>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230324#M502710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I put this in a sample app, I got the Aggr result as a number, not a date. On your chart, it looks like a date, but I'm bot sure if that is formatted on the chart that way. It also looks like our expressions had an extra closed parenthesis on the end. Removing that got the result you wanted (with the limited data set I tested). The TOTAL is not required.&lt;/P&gt;&lt;P&gt;I've attached the sample.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Oct 2010 17:18:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230324#M502710</guid>
      <dc:creator />
      <dc:date>2010-10-12T17:18:13Z</dc:date>
    </item>
    <item>
      <title>Duplicates - Need an aggr function or set analysis - help??</title>
      <link>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230325#M502711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all of your help!! - I think actually what I needed was the NODISTINCT clause.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Oct 2010 19:13:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Duplicates-Need-an-aggr-function-or-set-analysis-help/m-p/230325#M502711</guid>
      <dc:creator />
      <dc:date>2010-10-12T19:13:18Z</dc:date>
    </item>
  </channel>
</rss>

