<?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: Table - Only show entries with count greater than 1 in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2039251#M85628</link>
    <description>&lt;P&gt;Ah, yes - that actually makes sense. Try this instead as the calculated dimension:&lt;/P&gt;
&lt;P&gt;=IF(aggr(Count([Sales Primary Key]), [Sales Primary Key])&amp;gt;1,[Sales Primary Key])&lt;/P&gt;
&lt;P&gt;I hope I wrote it right this time.&lt;/P&gt;</description>
    <pubDate>Fri, 17 Feb 2023 13:04:55 GMT</pubDate>
    <dc:creator>henrikalmen</dc:creator>
    <dc:date>2023-02-17T13:04:55Z</dc:date>
    <item>
      <title>Table - Only show entries with count greater than 1</title>
      <link>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2038989#M85602</link>
      <description>&lt;P&gt;I want to ONLY show entries in a table with counts greater than 1.&lt;/P&gt;
&lt;P&gt;How do I remove the entries less or equal to 1, so we are only seeing anything above the count of 1?&lt;/P&gt;
&lt;P&gt;Using a table and is in QlikSense.&lt;/P&gt;
&lt;P&gt;Dimension is&amp;nbsp;[Sales Primary Key] and measure is&amp;nbsp;Count([Sales Primary Key])&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Andrew_2020_0-1676637195156.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/100776iB8754D4E58E6D346/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Andrew_2020_0-1676637195156.png" alt="Andrew_2020_0-1676637195156.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 12:34:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2038989#M85602</guid>
      <dc:creator>Andrew_2020</dc:creator>
      <dc:date>2023-02-17T12:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Table - Only show entries with count greater than 1</title>
      <link>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2039077#M85605</link>
      <description>&lt;P&gt;If your dimension i called DIM and your measure is count(x), you could use this calculated dimension:&lt;/P&gt;
&lt;P&gt;if(count(x)&amp;gt;1, DIM)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 07:42:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2039077#M85605</guid>
      <dc:creator>henrikalmen</dc:creator>
      <dc:date>2023-02-17T07:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Table - Only show entries with count greater than 1</title>
      <link>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2039231#M85623</link>
      <description>&lt;P&gt;Dimension is "Sales Primary Key" and the Measure is&amp;nbsp;Count([Sales Primary Key]). The solution you provided results in the below, which is still listing the entries less or equal to one.&lt;/P&gt;
&lt;P&gt;IF(Count([Sales Primary Key])&amp;gt;1,Count([Sales Primary Key]))&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Andrew_2020_0-1676636865730.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/100774iE721D132C94EA231/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Andrew_2020_0-1676636865730.png" alt="Andrew_2020_0-1676636865730.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 12:35:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2039231#M85623</guid>
      <dc:creator>Andrew_2020</dc:creator>
      <dc:date>2023-02-17T12:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Table - Only show entries with count greater than 1</title>
      <link>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2039242#M85626</link>
      <description>&lt;P&gt;You wrote the formula as the measure, but you should write it as a calculated dimension. Replace your dimension with this:&lt;BR /&gt;=IF(Count([Sales Primary Key])&amp;gt;1,[Sales Primary Key])&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 12:52:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2039242#M85626</guid>
      <dc:creator>henrikalmen</dc:creator>
      <dc:date>2023-02-17T12:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: Table - Only show entries with count greater than 1</title>
      <link>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2039246#M85627</link>
      <description>&lt;P&gt;First off, thanks for the continued support.&lt;/P&gt;
&lt;P&gt;When I use it as a dimension, it comes back telling me it is an invalid dimension.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Andrew_2020_0-1676638684757.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/100777i8929CD6DB4BE0BE7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Andrew_2020_0-1676638684757.png" alt="Andrew_2020_0-1676638684757.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Andrew_2020_1-1676638722798.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/100778i6B73FE0AEF99B928/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Andrew_2020_1-1676638722798.png" alt="Andrew_2020_1-1676638722798.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 12:59:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2039246#M85627</guid>
      <dc:creator>Andrew_2020</dc:creator>
      <dc:date>2023-02-17T12:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: Table - Only show entries with count greater than 1</title>
      <link>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2039251#M85628</link>
      <description>&lt;P&gt;Ah, yes - that actually makes sense. Try this instead as the calculated dimension:&lt;/P&gt;
&lt;P&gt;=IF(aggr(Count([Sales Primary Key]), [Sales Primary Key])&amp;gt;1,[Sales Primary Key])&lt;/P&gt;
&lt;P&gt;I hope I wrote it right this time.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 13:04:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2039251#M85628</guid>
      <dc:creator>henrikalmen</dc:creator>
      <dc:date>2023-02-17T13:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Table - Only show entries with count greater than 1</title>
      <link>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2039256#M85629</link>
      <description>&lt;P&gt;My first thought was "Didn't I already try this from all my research on these forums?".&lt;/P&gt;
&lt;P&gt;My second thought was "It worked?!"&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;That was the solution and now the list ONLY shows exactly what I was expecting. Thank you so much for the help and support.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Andrew_2020_0-1676639652796.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/100779i1E19605F9A21DAAF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Andrew_2020_0-1676639652796.png" alt="Andrew_2020_0-1676639652796.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 13:14:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Table-Only-show-entries-with-count-greater-than-1/m-p/2039256#M85629</guid>
      <dc:creator>Andrew_2020</dc:creator>
      <dc:date>2023-02-17T13:14:59Z</dc:date>
    </item>
  </channel>
</rss>

