<?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: Dimension limits to specific values + show others in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541226#M1146400</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Agree, in this case it should work without aggr, so I said "possibly".&amp;nbsp; So, this should be enough:&lt;/P&gt;&lt;P&gt;(if(match(Products,'House','Beauty','Bathroom', Products, 'Others')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Just a habit, in my cases aggr is almost always needed.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Aug 2013 12:08:06 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-08-29T12:08:06Z</dc:date>
    <item>
      <title>Dimension limits to specific values + show others</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541222#M1146396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a stacked bar chart (and in a pie chart) where there's one dimension with many possible categories (e.g. dimnesion = "Products", categories: "House","Beauty","Bathroom"...), is there a way to limit the presentation to &lt;EM&gt;specific&lt;/EM&gt; categories you define (e.g. House and Bathroom) and show "Others" as well (as you would in a normal dimension limits option).&lt;/P&gt;&lt;P&gt;What I did was to just define the categories I wanted in the expression of the chart, but this way I can't show the total for the others...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2013 13:35:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541222#M1146396</guid>
      <dc:creator />
      <dc:date>2013-08-28T13:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension limits to specific values + show others</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541223#M1146397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a calculated dimension may help, try this:&lt;/P&gt;&lt;P&gt;if( Products =&amp;nbsp; 'House' or Products = 'Beauty' or Products = 'Bathroom', 'Others')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HtH&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry: better is this:&lt;/P&gt;&lt;P&gt;if( Products =&amp;nbsp; 'House' or Products = 'Beauty' or Products = 'Bathroom', Prducts, 'Others')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2013 19:13:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541223#M1146397</guid>
      <dc:creator />
      <dc:date>2013-08-28T19:13:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension limits to specific values + show others</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541224#M1146398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Roland,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your answer is correct, but there is a shorter way using match() function.&amp;nbsp; And, posibly aggr() is needed too:&lt;/P&gt;&lt;P&gt;aggr(if(match(Products,'House','Beauty','Bathroom', Products, 'Others'), Products)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Aug 2013 20:44:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541224#M1146398</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-28T20:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension limits to specific values + show others</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541225#M1146399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;you are right, forgot about this shorter way.&lt;/P&gt;&lt;P&gt;But I don't see the aggr()-fanction to be used. There are no aggregations to be done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Aug 2013 07:30:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541225#M1146399</guid>
      <dc:creator />
      <dc:date>2013-08-29T07:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension limits to specific values + show others</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541226#M1146400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Agree, in this case it should work without aggr, so I said "possibly".&amp;nbsp; So, this should be enough:&lt;/P&gt;&lt;P&gt;(if(match(Products,'House','Beauty','Bathroom', Products, 'Others')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Just a habit, in my cases aggr is almost always needed.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Aug 2013 12:08:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541226#M1146400</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-29T12:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension limits to specific values + show others</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541227#M1146401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael, Roland - thanks a lot for your replies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael - are you sure this is the right syntax? (what you wrote in your last message)&lt;/P&gt;&lt;P&gt;I get &lt;EM&gt;error in calculated dimension&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i try to close the last parens I get the curly red line underneath it, and when I don't - the first parens is highlighted in red. Very confusing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Aug 2013 12:51:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541227#M1146401</guid>
      <dc:creator />
      <dc:date>2013-08-29T12:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension limits to specific values + show others</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541228#M1146402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I always mess the '()'...&amp;nbsp; This should work:&lt;BR /&gt;if(match(Products,'House','Beauty','Bathroom'), Products, 'Others')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Aug 2013 12:55:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541228#M1146402</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-29T12:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension limits to specific values + show others</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541229#M1146403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let me answer, Michael won't be angry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;His expression is missing a ') ' after 'Bathroom' --&amp;gt;&lt;/P&gt;&lt;P&gt;if(match(Products,'House','Beauty','Bathroom'&amp;nbsp; )&amp;nbsp; , Products, 'Others')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So long&lt;/P&gt;&lt;P&gt;R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Aug 2013 12:56:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541229#M1146403</guid>
      <dc:creator />
      <dc:date>2013-08-29T12:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension limits to specific values + show others</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541230#M1146404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh, lost &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Aug 2013 12:57:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541230#M1146404</guid>
      <dc:creator />
      <dc:date>2013-08-29T12:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension limits to specific values + show others</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541231#M1146405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm never angry &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Aug 2013 12:57:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541231#M1146405</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-29T12:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension limits to specific values + show others</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541232#M1146406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;works beautifully! Thank you both &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Aug 2013 13:02:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-limits-to-specific-values-show-others/m-p/541232#M1146406</guid>
      <dc:creator />
      <dc:date>2013-08-29T13:02:28Z</dc:date>
    </item>
  </channel>
</rss>

