<?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: Display top 10 records on Pivot table and line chart in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Display-top-10-records-on-Pivot-table-and-line-chart/m-p/2141225#M92807</link>
    <description>&lt;P&gt;Can we have dummy data to understand more?&lt;/P&gt;</description>
    <pubDate>Fri, 24 Nov 2023 20:03:33 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2023-11-24T20:03:33Z</dc:date>
    <item>
      <title>Display top 10 records on Pivot table and line chart</title>
      <link>https://community.qlik.com/t5/App-Development/Display-top-10-records-on-Pivot-table-and-line-chart/m-p/2141168#M92801</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I have&amp;nbsp; sales data file contains Store, Product, order, id, Time_period(1week, 1month, 3Month) information. Need to display top 10 orders sales details&amp;nbsp;Time_period wise( 1Week, 1Month, 3Month) in Pivot and Line chart.&lt;/P&gt;
&lt;P&gt;when I tried, data is getting summing up at product level but&amp;nbsp; need to show top 10&amp;nbsp; sales records at order level.&lt;/P&gt;
&lt;P&gt;Please advise.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:13:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Display-top-10-records-on-Pivot-table-and-line-chart/m-p/2141168#M92801</guid>
      <dc:creator>pani</dc:creator>
      <dc:date>2024-11-15T21:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: Display top 10 records on Pivot table and line chart</title>
      <link>https://community.qlik.com/t5/App-Development/Display-top-10-records-on-Pivot-table-and-line-chart/m-p/2141225#M92807</link>
      <description>&lt;P&gt;Can we have dummy data to understand more?&lt;/P&gt;</description>
      <pubDate>Fri, 24 Nov 2023 20:03:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Display-top-10-records-on-Pivot-table-and-line-chart/m-p/2141225#M92807</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2023-11-24T20:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: Display top 10 records on Pivot table and line chart</title>
      <link>https://community.qlik.com/t5/App-Development/Display-top-10-records-on-Pivot-table-and-line-chart/m-p/2141245#M92811</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/58052"&gt;@pani&lt;/a&gt;&amp;nbsp; Could you please provide some sample data?&lt;/P&gt;</description>
      <pubDate>Sat, 25 Nov 2023 05:24:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Display-top-10-records-on-Pivot-table-and-line-chart/m-p/2141245#M92811</guid>
      <dc:creator>sidhiq91</dc:creator>
      <dc:date>2023-11-25T05:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Display top 10 records on Pivot table and line chart</title>
      <link>https://community.qlik.com/t5/App-Development/Display-top-10-records-on-Pivot-table-and-line-chart/m-p/2141257#M92812</link>
      <description>&lt;P&gt;Thanks Anil and Sidhiq for your response, I am able to resolve it by giving ranking using auto number in script. Can I ask you u similar kind of question that I want to create&amp;nbsp; two tables, one is for sorting ascending order and another table&amp;nbsp; for descending order using below inline table, when i tried the second table behaving like&amp;nbsp; table1(FinalTable) even I changed orderby to desc to 2nd table(FinalTable1). please suggest.&lt;/P&gt;
&lt;DIV&gt;Table:&lt;/DIV&gt;
&lt;DIV&gt;LOAD * INLINE&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; [&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; MONTH, SALESMAN, SALES_VALUE&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; 201501, BEN, 10&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; 201501, ANN, 20&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; 201501, JAC, 5&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; 201502, BEN, 100&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; 201502, ANN, 20&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; 201502, JAC, 50&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; 201503, BEN, 5&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; 201503, ANN, 20&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; 201503, JAC, 1&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; ];&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;FinalTable:&lt;/DIV&gt;
&lt;DIV&gt;LOAD *,&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; AutoNumber(SALES_VALUE, MONTH) as RANK&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;Resident Table&lt;/DIV&gt;
&lt;DIV&gt;Order By MONTH, SALES_VALUE desc;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;FinalTable1:&lt;/DIV&gt;
&lt;DIV&gt;QUALIFY*;&lt;/DIV&gt;
&lt;DIV&gt;LOAD *,&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; AutoNumber(SALES_VALUE, MONTH) as RANK&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;Resident Table&lt;/DIV&gt;
&lt;DIV&gt;Order By MONTH, SALES_VALUE asc;&lt;/DIV&gt;
&lt;DIV&gt;//&lt;/DIV&gt;
&lt;DIV&gt;DROP Table Table;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Nov 2023 09:56:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Display-top-10-records-on-Pivot-table-and-line-chart/m-p/2141257#M92812</guid>
      <dc:creator>pani</dc:creator>
      <dc:date>2023-11-25T09:56:14Z</dc:date>
    </item>
  </channel>
</rss>

