<?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: Show Selected plus 'Others' in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935767#M323055</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if i use Sum({&lt;STRONG&gt;1&lt;/STRONG&gt;&amp;lt;YearWeek = p(YearWeek)&amp;gt;} SellOut.QTY))&lt;/P&gt;&lt;P&gt;then i am not able to select Product, if i select Product the chart does not change because of &lt;STRONG&gt;1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;it show all the time 10 product and 'Others' as it was.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;but if i use &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Sum({&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&amp;lt;YearWeek = p(YearWeek)&amp;gt;} SellOut.QTY))&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;without &lt;STRONG&gt;1 &lt;/STRONG&gt;,and if i select few Product,&amp;nbsp; it shows only selected Products...&amp;nbsp; no 'Others'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think it will not work, even i tried many possibilities..but no luck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Really i appreciate your time...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Aug 2015 14:00:02 GMT</pubDate>
    <dc:creator>israrkhan</dc:creator>
    <dc:date>2015-08-17T14:00:02Z</dc:date>
    <item>
      <title>Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935758#M323046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Community,&lt;/P&gt;&lt;P&gt;i have a pivot table, with two dimensions and one expressions..&lt;/P&gt;&lt;P&gt;my dimensions are:&lt;/P&gt;&lt;P&gt;1) =If(Aggr(Rank(Sum(SellOut.QTY)), Product)&amp;lt;=10, Product, 'Others')&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // to show top 10 Product default&lt;/P&gt;&lt;P&gt;2) =Aggr(if(YearWeek &amp;gt; (max( TOTAL YearWeek) - 8), YearWeek), YearWeek)&amp;nbsp; // to show last 8 week default. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have one expression...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)&amp;nbsp; =if(Dimensionality()=0,SUM({&amp;lt;Product=&amp;gt;}SellOut.QTY),Sum(SellOut.QTY))&lt;/P&gt;&lt;P&gt;// to show the full total all the time, even if user has selected the products.&lt;/P&gt;&lt;P&gt;finally i see this graph.. which is correct...&lt;/P&gt;&lt;P&gt;&lt;IMG alt="111.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/96237_111.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now if i make selection in Product list box, let say i chose 5 Products...the chart look like below...&lt;/P&gt;&lt;P&gt;&lt;IMG alt="112.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/96239_112.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;everything is ok, but only 'Others' row get disappear...&lt;/P&gt;&lt;P&gt;i want to show Selected and 'others' aswell..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to show other all the time... all the time selected plus 'others' as a row..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think its clear...&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 10:22:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935758#M323046</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2015-08-17T10:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935759#M323047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to include a set analysis within your calculated dimension to force the displaying of Others, maybe in this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Aggr(Rank(Sum({1} SellOut.QTY)), Product)&amp;lt;=&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(getselectedcount(Product) &amp;lt; 10, if(getselectedcount(Product), 10), Product, 'Others')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 11:04:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935759#M323047</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-08-17T11:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935760#M323048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marcus..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is an error in expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Aggr(Rank(Sum({1} SellOut.QTY)), Product)&amp;lt;= if(getselectedcount(Product) &amp;lt; 10, if(getselectedcount(Product), 10), Product, 'Others')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;trying to resolve error...&lt;/P&gt;&lt;P&gt;will let you know, if it works..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 11:13:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935760#M323048</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2015-08-17T11:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935761#M323049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe it's not accepting directly an expression by the selection-count query and it needs wrapped in $-sign expansion:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... $(=if(getselectedcount(Product) &amp;lt; 10, if(getselectedcount(Product), 10)) ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 11:21:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935761#M323049</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-08-17T11:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935762#M323050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think problem in brackets..&lt;/P&gt;&lt;P&gt;see the image please,&lt;/P&gt;&lt;P&gt;and i could not understand the logic of text covered in red box...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="111.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/96246_111.png" style="height: 94px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 11:29:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935762#M323050</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2015-08-17T11:29:16Z</dc:date>
    </item>
    <item>
      <title>Re: Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935763#M323051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;these both are ok, but not showing 'Others'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) =If(Aggr(Rank(Sum({1} SellOut.QTY)), Product)&amp;lt;= if(getselectedcount(Product) &amp;lt; 10, getselectedcount(Product),10), Product, 'Others')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) =If(Aggr(Rank(Sum({1} SellOut.QTY)), Product)&amp;lt;= if(getselectedcount(Product) &amp;lt; 10, getselectedcount(Product)), Product, 'Others')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;showing only selected...as before&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 11:35:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935763#M323051</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2015-08-17T11:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935764#M323052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think my first suggestions was unnecessary complex and not quit suitable and think it's better to leave the calculated dimension like it was and extend the expression with set analysis of &lt;STRONG&gt;1&lt;/STRONG&gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Aggr(Rank(Sum({1} SellOut.QTY)), Product)&amp;lt;=10, Product, 'Others')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= Sum({1 &amp;lt; Week = p(Week)&amp;gt;} SellOut.QTY)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 12:49:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935764#M323052</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-08-17T12:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935765#M323053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think first expression will be like&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;If(Aggr(Rank(Sum({1} SellOut.QTY)), Product)&amp;lt;=10, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Sum SellOut.QTY)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;,&lt;/STRONG&gt; 'Others')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;instead of&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If(Aggr(Rank(Sum({1} SellOut.QTY)), Product)&amp;lt;=10, &lt;STRONG&gt;Product&lt;/STRONG&gt;, 'Others')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;but this will show 'others' in the cells, not as a row.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;and where to use second expression...?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Many thanks&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 13:23:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935765#M323053</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2015-08-17T13:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935766#M323054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry I wasn't accurate enough:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;calculated dimension:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If(Aggr(Rank(Sum({1} SellOut.QTY)), Product)&amp;lt;=10, Product, 'Others')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;expression:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;= Sum({1 &amp;lt; Week = p(Week)&amp;gt;} SellOut.QTY)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 13:34:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935766#M323054</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-08-17T13:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935767#M323055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if i use Sum({&lt;STRONG&gt;1&lt;/STRONG&gt;&amp;lt;YearWeek = p(YearWeek)&amp;gt;} SellOut.QTY))&lt;/P&gt;&lt;P&gt;then i am not able to select Product, if i select Product the chart does not change because of &lt;STRONG&gt;1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;it show all the time 10 product and 'Others' as it was.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;but if i use &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Sum({&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&amp;lt;YearWeek = p(YearWeek)&amp;gt;} SellOut.QTY))&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;without &lt;STRONG&gt;1 &lt;/STRONG&gt;,and if i select few Product,&amp;nbsp; it shows only selected Products...&amp;nbsp; no 'Others'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think it will not work, even i tried many possibilities..but no luck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Really i appreciate your time...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 14:00:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935767#M323055</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2015-08-17T14:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935768#M323056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried to simulate this within an application and for me it looked thats worked:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/96256_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 14:15:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935768#M323056</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-08-17T14:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935769#M323057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it looks like its working for you...&lt;/P&gt;&lt;P&gt;can you please share a sample...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 17:48:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935769#M323057</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2015-08-17T17:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935770#M323058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Marcus, i see in your image it seems it working for you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i tried same , but still no luck...&lt;/P&gt;&lt;P&gt;cam you please have a look on attached sample, in the document, see if i dont select any brand, then i can see top&amp;nbsp; 10 brands and one row for others.&lt;/P&gt;&lt;P&gt;but i i select a brand then i cant see 'other'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please have a look on it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Israr Khan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Aug 2015 13:19:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935770#M323058</guid>
      <dc:creator>israrkhan</dc:creator>
      <dc:date>2015-08-22T13:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: Show Selected plus 'Others'</title>
      <link>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935771#M323059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Untill a proper sorting (which could be quite difficult within pivot-tables especially with calculated dimensions and a first try with dual() didn't work - but I think with some more efforts it should work, too - see for example: &lt;A href="https://community.qlik.com/docs/DOC-7220"&gt;Perfectly Sorting Pivot Table (by A-Z. y-Value set for each dim-level)&lt;/A&gt;) should it work now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Aug 2015 16:39:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Show-Selected-plus-Others/m-p/935771#M323059</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-08-23T16:39:17Z</dc:date>
    </item>
  </channel>
</rss>

