<?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 Show Duplicates in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Show-Duplicates/m-p/194284#M55253</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your expressions, use:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;if(Count(SERIAL_NO) &amp;gt; 1, Sum(Sales))&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;That will make the value null when there is only one SERIAL NO and those won't be shown when using the default options for a table. You will need to use the if(Count piece on every expression in the table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Dec 2009 23:30:45 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-12-21T23:30:45Z</dc:date>
    <item>
      <title>Show Duplicates</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Duplicates/m-p/194282#M55251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have loaded two tables into QV, that are linked by an 'Installation Number'.&lt;/P&gt;&lt;P&gt;In a table box the loaded data looks like this (There are other columns of data, but I've left them out for now):&lt;/P&gt;&lt;P&gt;INSTALLATION SERIAL NO&lt;BR /&gt;1 1234&lt;BR /&gt;2 2256&lt;BR /&gt;2 3455&lt;BR /&gt;3 5899&lt;BR /&gt;4 1425&lt;/P&gt;&lt;P&gt;From the table I need to show only those installations that have more than one serial number (ie installation number 2).&lt;/P&gt;&lt;P&gt;Any idea how I can do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2009 23:22:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Duplicates/m-p/194282#M55251</guid>
      <dc:creator>agsearle</dc:creator>
      <dc:date>2009-12-21T23:22:26Z</dc:date>
    </item>
    <item>
      <title>Show Duplicates</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Duplicates/m-p/194283#M55252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrew.&lt;/P&gt;&lt;P&gt;Here you are a possible solution.&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2009 23:29:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Duplicates/m-p/194283#M55252</guid>
      <dc:creator />
      <dc:date>2009-12-21T23:29:38Z</dc:date>
    </item>
    <item>
      <title>Show Duplicates</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Duplicates/m-p/194284#M55253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your expressions, use:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;if(Count(SERIAL_NO) &amp;gt; 1, Sum(Sales))&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;That will make the value null when there is only one SERIAL NO and those won't be shown when using the default options for a table. You will need to use the if(Count piece on every expression in the table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2009 23:30:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Duplicates/m-p/194284#M55253</guid>
      <dc:creator />
      <dc:date>2009-12-21T23:30:45Z</dc:date>
    </item>
    <item>
      <title>Show Duplicates</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Duplicates/m-p/194285#M55254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have many expressions, you can instead do the filtering with a calculated dimension like:&lt;/P&gt;&lt;P&gt;=if(aggr(count(INSTALLATION), INSTALLATION) &amp;gt; 1, INSTALLATION)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Dec 2009 06:39:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Duplicates/m-p/194285#M55254</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2009-12-22T06:39:00Z</dc:date>
    </item>
    <item>
      <title>Show Duplicates</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Duplicates/m-p/194286#M55255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Miguel, thanks for your suggestion but my data is taken from many tables, not just one, where your example works. I have many source tables and when the installation table is linked to the serial number table and a straight table box is constructed, you get multiple installations if there are more than one serial number per installation, and it's these ones that I'm looking for.&lt;/P&gt;&lt;P&gt;My schema is:&lt;/P&gt;&lt;P&gt;[View:http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/2656.SCREEN-SHOT.doc:550:0]&lt;/P&gt;&lt;P&gt;NMiller and Rob, I couldn't get your suggestions to work either sorry.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Dec 2009 16:51:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Duplicates/m-p/194286#M55255</guid>
      <dc:creator>agsearle</dc:creator>
      <dc:date>2009-12-22T16:51:22Z</dc:date>
    </item>
    <item>
      <title>Show Duplicates</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Duplicates/m-p/194287#M55256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post a qvw?&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Dec 2009 01:15:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Duplicates/m-p/194287#M55256</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2009-12-23T01:15:23Z</dc:date>
    </item>
  </channel>
</rss>

