<?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 How to select top 10 values from a field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-select-top-10-values-from-a-field/m-p/1740377#M720893</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 78px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/39911i418B5EBCF55AA272/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;in this table, I want the top 10 values of Pen.&lt;/P&gt;&lt;P&gt;The output should be like&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.PNG" style="width: 75px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/39910iD827A7B87ADDCBAD/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.PNG" alt="2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>Shumaila</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>How to select top 10 values from a field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-top-10-values-from-a-field/m-p/1740377#M720893</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 78px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/39911i418B5EBCF55AA272/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;in this table, I want the top 10 values of Pen.&lt;/P&gt;&lt;P&gt;The output should be like&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.PNG" style="width: 75px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/39910iD827A7B87ADDCBAD/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.PNG" alt="2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-top-10-values-from-a-field/m-p/1740377#M720893</guid>
      <dc:creator>Shumaila</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to select top 10 values from a field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-top-10-values-from-a-field/m-p/1740408#M720894</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Something like&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tab1:
LOAD * INLINE [
Pen
-69
-70
-93
-51
-57
-61
-72
-64
-60
-71
-70
-78
-54
-65
-72
-87
-74
-74];

Tab2:
load Pen, RowNo() 
Resident tab1
where RowNo() &amp;lt;9;

drop table tab1;&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 01 Sep 2020 19:50:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-top-10-values-from-a-field/m-p/1740408#M720894</guid>
      <dc:creator>sergio0592</dc:creator>
      <dc:date>2020-09-01T19:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to select top 10 values from a field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-top-10-values-from-a-field/m-p/1740419#M720895</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/125169"&gt;@Shumaila&lt;/a&gt;&amp;nbsp; Is it similar to below thread?&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/New-to-QlikView/Min-values-in-qlikview-table/m-p/1740266#M392563" target="_blank"&gt;https://community.qlik.com/t5/New-to-QlikView/Min-values-in-qlikview-table/m-p/1740266#M392563&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2020 20:17:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-top-10-values-from-a-field/m-p/1740419#M720895</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-09-01T20:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to select top 10 values from a field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-top-10-values-from-a-field/m-p/1744088#M720896</link>
      <description>&lt;P&gt;Going to add one other item as was not sure exactly what you were trying to do, so this one may be closer:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Recipe-for-a-Pareto-Analysis/ba-p/1468497" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Recipe-for-a-Pareto-Analysis/ba-p/1468497&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Recipe-for-a-Pareto-Analysis-Revisited/ba-p/1473684" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Recipe-for-a-Pareto-Analysis-Revisited/ba-p/1473684&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If one of the others did work, we would appreciate it if you would close the thread by using the Accept as Solution button on the post(s) that did help.&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2020 18:28:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-top-10-values-from-a-field/m-p/1744088#M720896</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-09-15T18:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to select top 10 values from a field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-top-10-values-from-a-field/m-p/1744163#M720897</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/336"&gt;@Kushal_Chawda&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it worked for me!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2020 05:54:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-top-10-values-from-a-field/m-p/1744163#M720897</guid>
      <dc:creator>Shumaila</dc:creator>
      <dc:date>2020-09-16T05:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to select top 10 values from a field</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-select-top-10-values-from-a-field/m-p/1744165#M720898</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/14114"&gt;@Brett_Bleess&lt;/a&gt;, this problem has been solved!&lt;/P&gt;</description>
      <pubDate>Wed, 16 Sep 2020 05:56:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-select-top-10-values-from-a-field/m-p/1744165#M720898</guid>
      <dc:creator>Shumaila</dc:creator>
      <dc:date>2020-09-16T05:56:47Z</dc:date>
    </item>
  </channel>
</rss>

