<?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: last 100 records from source table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/last-100-records/m-p/1628460#M813006</link>
    <description>&lt;P&gt;Table :&lt;BR /&gt;Load&lt;BR /&gt;RecNo() as Sno,&lt;BR /&gt;RowNo() as Rownum&lt;BR /&gt;&amp;nbsp;resident&amp;nbsp; Transact where Sno&amp;lt;=100 order by Sno desc ;&amp;nbsp; &amp;nbsp; &amp;nbsp; //Transact is already loaded table .&lt;/P&gt;</description>
    <pubDate>Thu, 26 Sep 2019 08:30:58 GMT</pubDate>
    <dc:creator>navin</dc:creator>
    <dc:date>2019-09-26T08:30:58Z</dc:date>
    <item>
      <title>last 100 records</title>
      <link>https://community.qlik.com/t5/QlikView/last-100-records/m-p/1404097#M813002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&amp;nbsp; &lt;/P&gt;&lt;P&gt;i have&amp;nbsp; one table i&amp;nbsp; want&amp;nbsp; last&amp;nbsp; 100 records in&amp;nbsp; table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/last-100-records/m-p/1404097#M813002</guid>
      <dc:creator>rajareddyjkl</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: last 100 records</title>
      <link>https://community.qlik.com/t5/QlikView/last-100-records/m-p/1404098#M813003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;First 10&lt;/P&gt;&lt;P&gt;Load * From Table Order By &lt;STRONG&gt;FieldName&lt;/STRONG&gt; Desc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;Load * from Table;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;First 10&lt;/P&gt;&lt;P&gt;LOAD * Resident Table Order By &lt;STRONG style="font-size: 13.3333px;"&gt;FieldName &lt;/STRONG&gt;desc;&lt;/P&gt;&lt;P&gt;DROP Table Table;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Sep 2017 18:59:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/last-100-records/m-p/1404098#M813003</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-09-24T18:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: last 100 records</title>
      <link>https://community.qlik.com/t5/QlikView/last-100-records/m-p/1404099#M813004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try using peek function in your load script..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2017 05:58:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/last-100-records/m-p/1404099#M813004</guid>
      <dc:creator>poppypearce</dc:creator>
      <dc:date>2017-09-25T05:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: last 100 records</title>
      <link>https://community.qlik.com/t5/QlikView/last-100-records/m-p/1404100#M813005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your table add one field for counting the rows Ex:- Rowno() as Rid and then use this field to load last 100 data from the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Resident SourceTable Where Rid &amp;gt; 100;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DROP Table SourceTable;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2017 06:26:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/last-100-records/m-p/1404100#M813005</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2017-09-25T06:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: last 100 records from source table</title>
      <link>https://community.qlik.com/t5/QlikView/last-100-records/m-p/1628460#M813006</link>
      <description>&lt;P&gt;Table :&lt;BR /&gt;Load&lt;BR /&gt;RecNo() as Sno,&lt;BR /&gt;RowNo() as Rownum&lt;BR /&gt;&amp;nbsp;resident&amp;nbsp; Transact where Sno&amp;lt;=100 order by Sno desc ;&amp;nbsp; &amp;nbsp; &amp;nbsp; //Transact is already loaded table .&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 08:30:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/last-100-records/m-p/1628460#M813006</guid>
      <dc:creator>navin</dc:creator>
      <dc:date>2019-09-26T08:30:58Z</dc:date>
    </item>
  </channel>
</rss>

