<?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: TOP N Values in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/TOP-N-Values/m-p/1935275#M77048</link>
    <description>&lt;P&gt;Please follow this link and hope this helps..&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/Top-N-values/td-p/505467" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Dev/Top-N-values/td-p/505467&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Also you can do it based on "Dimension limit" by following this link:&amp;nbsp;&lt;A href="https://k-shivanand.medium.com/top-n-chart-in-qlikview-68973b2e7a31" target="_blank"&gt;https://k-shivanand.medium.com/top-n-chart-in-qlikview-68973b2e7a31&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 25 May 2022 08:54:35 GMT</pubDate>
    <dc:creator>Raja2022</dc:creator>
    <dc:date>2022-05-25T08:54:35Z</dc:date>
    <item>
      <title>TOP N Values</title>
      <link>https://community.qlik.com/t5/App-Development/TOP-N-Values/m-p/1935261#M77047</link>
      <description>&lt;P&gt;Hi guys,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have a table chart and i want it to show the top 10 values. (so it means first 10 rows)&lt;BR /&gt;how to do that?&lt;BR /&gt;&lt;BR /&gt;thank you&lt;BR /&gt;ena&lt;/P&gt;</description>
      <pubDate>Wed, 25 May 2022 08:12:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/TOP-N-Values/m-p/1935261#M77047</guid>
      <dc:creator>ena1309</dc:creator>
      <dc:date>2022-05-25T08:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: TOP N Values</title>
      <link>https://community.qlik.com/t5/App-Development/TOP-N-Values/m-p/1935275#M77048</link>
      <description>&lt;P&gt;Please follow this link and hope this helps..&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/Top-N-values/td-p/505467" target="_blank"&gt;https://community.qlik.com/t5/QlikView-App-Dev/Top-N-values/td-p/505467&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Also you can do it based on "Dimension limit" by following this link:&amp;nbsp;&lt;A href="https://k-shivanand.medium.com/top-n-chart-in-qlikview-68973b2e7a31" target="_blank"&gt;https://k-shivanand.medium.com/top-n-chart-in-qlikview-68973b2e7a31&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 May 2022 08:54:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/TOP-N-Values/m-p/1935275#M77048</guid>
      <dc:creator>Raja2022</dc:creator>
      <dc:date>2022-05-25T08:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: TOP N Values</title>
      <link>https://community.qlik.com/t5/App-Development/TOP-N-Values/m-p/1935281#M77050</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/180604"&gt;@ena1309&lt;/a&gt;&amp;nbsp; or you can use dimension aggr like :&lt;/P&gt;
&lt;P&gt;suppose you have this input table;:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Taoufiq_Zarra_0-1653469157413.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/80247i94DA8EC6412F758E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Taoufiq_Zarra_0-1653469157413.png" alt="Taoufiq_Zarra_0-1653469157413.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and you want to show only first 10 dimension (Flag) based on row number :&lt;/P&gt;
&lt;P&gt;use in dimension :&lt;/P&gt;
&lt;LI-CODE lang="python"&gt;=aggr(if(rowno()&amp;lt;=10,Flag),Flag)&lt;/LI-CODE&gt;
&lt;P&gt;and suppress null value&lt;/P&gt;
&lt;P&gt;in measure -&amp;gt; your measure&lt;/P&gt;
&lt;P&gt;output:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Taoufiq_Zarra_1-1653469248346.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/80248iBFF33957C304427E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Taoufiq_Zarra_1-1653469248346.png" alt="Taoufiq_Zarra_1-1653469248346.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 May 2022 09:00:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/TOP-N-Values/m-p/1935281#M77050</guid>
      <dc:creator>Taoufiq_Zarra</dc:creator>
      <dc:date>2022-05-25T09:00:52Z</dc:date>
    </item>
  </channel>
</rss>

