<?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: Only Unique Occurring Items to be listed in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1543909#M744808</link>
    <description>&lt;P&gt;What if...&lt;/P&gt;&lt;P&gt;Another dimension was thrown in, say region, and I want to see what item is still constantly at value 1? It would still be Cream and Juice, but I cant seem to manipulate your expression to capture this.&lt;/P&gt;&lt;P&gt;The result should be:&lt;/P&gt;&lt;P&gt;Cream and Juice perform consistently regardless of area.&lt;/P&gt;</description>
    <pubDate>Wed, 13 Feb 2019 19:27:47 GMT</pubDate>
    <dc:creator>ZoeM</dc:creator>
    <dc:date>2019-02-13T19:27:47Z</dc:date>
    <item>
      <title>Only Unique Occurring Items to be listed</title>
      <link>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1543282#M744805</link>
      <description>&lt;P&gt;Hi Community,&lt;/P&gt;&lt;P&gt;I am probably overthinking this situation, but I need to figure out how to write an expression that will count ONLY the unique items that occurred Once with a value of 1.&lt;/P&gt;&lt;P&gt;In the attached QVW, I have 8 Items of which two occurred once each, Juice and Cream. I would like to only show these two items and I cant seem to figure how to do it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any help rendered will be truly appreciated as always.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:28:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1543282#M744805</guid>
      <dc:creator>ZoeM</dc:creator>
      <dc:date>2024-11-16T04:28:27Z</dc:date>
    </item>
    <item>
      <title>Re: Only Unique Occurring Items to be listed</title>
      <link>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1543453#M744806</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;PRE&gt;count({&amp;lt;Item = {"=aggr(count(Item), Item)=1"}&amp;gt; * &amp;lt;Value= {'1'}&amp;gt;} Item)&lt;/PRE&gt;&lt;P&gt;P.S. I recommend to precalculate special flags in load script. Aggr is heavy memory and cpu function.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 08:47:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1543453#M744806</guid>
      <dc:creator>mrybalko</dc:creator>
      <dc:date>2019-02-13T08:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Only Unique Occurring Items to be listed</title>
      <link>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1543562#M744807</link>
      <description>&lt;P&gt;That did the trick, I will take a look at the expression you created and see if I can formulate it for my dashboard.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks Community&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 11:53:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1543562#M744807</guid>
      <dc:creator>ZoeM</dc:creator>
      <dc:date>2019-02-13T11:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: Only Unique Occurring Items to be listed</title>
      <link>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1543909#M744808</link>
      <description>&lt;P&gt;What if...&lt;/P&gt;&lt;P&gt;Another dimension was thrown in, say region, and I want to see what item is still constantly at value 1? It would still be Cream and Juice, but I cant seem to manipulate your expression to capture this.&lt;/P&gt;&lt;P&gt;The result should be:&lt;/P&gt;&lt;P&gt;Cream and Juice perform consistently regardless of area.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 19:27:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1543909#M744808</guid>
      <dc:creator>ZoeM</dc:creator>
      <dc:date>2019-02-13T19:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Only Unique Occurring Items to be listed</title>
      <link>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1544770#M744809</link>
      <description>&lt;P&gt;You should add every new dimension in aggr function:&lt;/P&gt;&lt;PRE&gt;count({&amp;lt;Item = {"=aggr(count(Item), Item, Region)=1"}&amp;gt; * &amp;lt;Value= {'1'}&amp;gt;} Item)&lt;/PRE&gt;&lt;P&gt;Recommend&lt;A href="https://community.qlik.com/t5/QlikView-Documents/QlikView-App-Aggr/ta-p/1489353" target="_self"&gt; this post and exampl&lt;/A&gt;e&lt;/P&gt;</description>
      <pubDate>Fri, 15 Feb 2019 07:57:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1544770#M744809</guid>
      <dc:creator>mrybalko</dc:creator>
      <dc:date>2019-02-15T07:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: Only Unique Occurring Items to be listed</title>
      <link>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1545121#M744810</link>
      <description>&lt;P&gt;Thanks for the suggestion.&lt;/P&gt;&lt;P&gt;However, I added another item called Mushroom and gave it a 1 value for NA, 2 value for EU and 3 value for SA. My result for the initial question i snow showing Cream, Juice and Mushroom. I should only have Cream and Juice, Mushroom had other values in other regions (2 in EU and 3 in SA).&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Feb 2019 15:10:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1545121#M744810</guid>
      <dc:creator>ZoeM</dc:creator>
      <dc:date>2019-02-15T15:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: Only Unique Occurring Items to be listed</title>
      <link>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1545125#M744811</link>
      <description>&lt;P&gt;forgot to attach the dashboard&lt;/P&gt;</description>
      <pubDate>Fri, 15 Feb 2019 15:12:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Only-Unique-Occurring-Items-to-be-listed/m-p/1545125#M744811</guid>
      <dc:creator>ZoeM</dc:creator>
      <dc:date>2019-02-15T15:12:27Z</dc:date>
    </item>
  </channel>
</rss>

