<?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 Ranking in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Ranking/m-p/268152#M1181372</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to ask you how can I populate Top 5, Top 10, Top 20, Top 30 till&amp;nbsp; Top 100 Customers and Products.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have sort the amount in descending and in presentation tab I have checked Max 100. In this way I can able to show 100 top customers. But I also have to show top 10, 20, 30... so on till 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Nov 2011 10:52:00 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-11-30T10:52:00Z</dc:date>
    <item>
      <title>Ranking</title>
      <link>https://community.qlik.com/t5/QlikView/Ranking/m-p/268152#M1181372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to ask you how can I populate Top 5, Top 10, Top 20, Top 30 till&amp;nbsp; Top 100 Customers and Products.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have sort the amount in descending and in presentation tab I have checked Max 100. In this way I can able to show 100 top customers. But I also have to show top 10, 20, 30... so on till 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 10:52:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranking/m-p/268152#M1181372</guid>
      <dc:creator />
      <dc:date>2011-11-30T10:52:00Z</dc:date>
    </item>
    <item>
      <title>Ranking</title>
      <link>https://community.qlik.com/t5/QlikView/Ranking/m-p/268153#M1181373</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;if you want to rank e.g. by sum(Sales), you could use a calculated dimension like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=aggr(if(rank(sum(Sales))&amp;lt;=5,Customer), Customer)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and expression &lt;/P&gt;&lt;P&gt;=sum(Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace Customer with Products if needed and 5 with 10, 20,30 , 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 11:09:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranking/m-p/268153#M1181373</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-11-30T11:09:10Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking</title>
      <link>https://community.qlik.com/t5/QlikView/Ranking/m-p/268154#M1181374</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;Thanks for the quick response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But then i have to change it always. Is there any alternative ways..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 11:14:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranking/m-p/268154#M1181374</guid>
      <dc:creator />
      <dc:date>2011-11-30T11:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking</title>
      <link>https://community.qlik.com/t5/QlikView/Ranking/m-p/268155#M1181375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not really sure what you are after,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you could use a variable with associated slider to change the X in TopX instead of hardcoding the X.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you could highlight the different X by color, something like this as background color expression in expression tab:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(rank(sum(Sales))&amp;lt;=5,green()&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(rank(sum(Sales))&amp;lt;=10, yellow(), red() ) )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(This are awful colors, just an example).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you tell us a bit more detailed, what you are looking for, we can help you better.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 11:19:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranking/m-p/268155#M1181375</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-11-30T11:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking</title>
      <link>https://community.qlik.com/t5/QlikView/Ranking/m-p/268156#M1181376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please provide me with an example. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And can't we hardcode it.. Suppose I click on Top 10 it will give me Top 10 customers and like wise for other Top(20,30,40) customers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 11:39:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranking/m-p/268156#M1181376</guid>
      <dc:creator />
      <dc:date>2011-11-30T11:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking</title>
      <link>https://community.qlik.com/t5/QlikView/Ranking/m-p/268157#M1181377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, I thought you could give me an example for how it should work or look like &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok, here is a simple example with an input box variable to select the X in TopX for Customers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 11:48:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranking/m-p/268157#M1181377</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-11-30T11:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking</title>
      <link>https://community.qlik.com/t5/QlikView/Ranking/m-p/268158#M1181378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;Please find attached of the qvw file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 12:01:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranking/m-p/268158#M1181378</guid>
      <dc:creator />
      <dc:date>2011-11-30T12:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking</title>
      <link>https://community.qlik.com/t5/QlikView/Ranking/m-p/268159#M1181379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are using table boxes, which don't allow calculated dimension or expressions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can limit your data with a trigger action though, so I created one under settings -&amp;gt; document properties -&amp;gt; triggers for TopRank field.&lt;/P&gt;&lt;P&gt;If you select one value in TopRank, you now &lt;EM&gt;select &lt;/EM&gt;the topX CustomerIDs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To show how you could go on with my original approach, you'll need a table chart. So I created one, used the above mentioned calculated dimension, but with max(TopRankAggr) instead of the variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need only one of&amp;nbsp; the solutions, not both, of course.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 12:21:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranking/m-p/268159#M1181379</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-11-30T12:21:29Z</dc:date>
    </item>
    <item>
      <title>Re: Ranking</title>
      <link>https://community.qlik.com/t5/QlikView/Ranking/m-p/268160#M1181380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a ton Stefan...!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 12:39:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Ranking/m-p/268160#M1181380</guid>
      <dc:creator />
      <dc:date>2011-11-30T12:39:34Z</dc:date>
    </item>
  </channel>
</rss>

