<?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 find top sequence number per row in QVD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/find-top-sequence-number-per-row-in-QVD/m-p/247787#M1185125</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; My source qvds have a descending sequence that determines the latest version of the row, for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5,a&lt;BR /&gt;4,a&lt;BR /&gt;3,a&lt;BR /&gt;2,a&lt;BR /&gt;1,a&lt;BR /&gt;4,b&lt;BR /&gt;3,b&lt;BR /&gt;2,b&lt;BR /&gt;1,b&lt;BR /&gt;3,c&lt;BR /&gt;2,c&lt;BR /&gt;1,c&lt;BR /&gt;1,d&lt;BR /&gt;2,e&lt;BR /&gt;1,e&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;would result in &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5,a&lt;BR /&gt;4,b&lt;BR /&gt;3,c&lt;BR /&gt;1,d&lt;/P&gt;&lt;P&gt;2,e&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would I limit the input data to show the current values from the qvd?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;James&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Oct 2011 23:42:12 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-10-13T23:42:12Z</dc:date>
    <item>
      <title>find top sequence number per row in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/find-top-sequence-number-per-row-in-QVD/m-p/247787#M1185125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; My source qvds have a descending sequence that determines the latest version of the row, for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5,a&lt;BR /&gt;4,a&lt;BR /&gt;3,a&lt;BR /&gt;2,a&lt;BR /&gt;1,a&lt;BR /&gt;4,b&lt;BR /&gt;3,b&lt;BR /&gt;2,b&lt;BR /&gt;1,b&lt;BR /&gt;3,c&lt;BR /&gt;2,c&lt;BR /&gt;1,c&lt;BR /&gt;1,d&lt;BR /&gt;2,e&lt;BR /&gt;1,e&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;would result in &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5,a&lt;BR /&gt;4,b&lt;BR /&gt;3,c&lt;BR /&gt;1,d&lt;/P&gt;&lt;P&gt;2,e&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would I limit the input data to show the current values from the qvd?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;James&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Oct 2011 23:42:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/find-top-sequence-number-per-row-in-QVD/m-p/247787#M1185125</guid>
      <dc:creator />
      <dc:date>2011-10-13T23:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: find top sequence number per row in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/find-top-sequence-number-per-row-in-QVD/m-p/247788#M1185126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This would do the trick.  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;RawData:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;    RecNo() as RecNo,&lt;/P&gt;&lt;P&gt;     Number,&lt;/P&gt;&lt;P&gt;     Letter&lt;/P&gt;&lt;P&gt;FROM source.csv (txt);&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LatestNumberLetters:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;    Number,&lt;/P&gt;&lt;P&gt;    Max(RecNo) AS RecNo&lt;/P&gt;&lt;P&gt;Resident RawData;&lt;/P&gt;&lt;P&gt;LEFT JOIN&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;    RecNo,&lt;/P&gt;&lt;P&gt;    Letter &lt;/P&gt;&lt;P&gt;Resident RawData;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DROP Table RawData;&lt;/P&gt;&lt;P&gt;DROP Field RecNo;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2011 00:29:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/find-top-sequence-number-per-row-in-QVD/m-p/247788#M1185126</guid>
      <dc:creator>gussfish</dc:creator>
      <dc:date>2011-10-14T00:29:29Z</dc:date>
    </item>
    <item>
      <title>find top sequence number per row in QVD</title>
      <link>https://community.qlik.com/t5/QlikView/find-top-sequence-number-per-row-in-QVD/m-p/247789#M1185127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I worked on this for the past couple of days and found that while the question and answer were helpful, the original problem was solved by reading a control record from the database.&amp;nbsp; Seems I should have done a bit more research on the problem before asking my question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;BR /&gt;James&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2011 13:45:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/find-top-sequence-number-per-row-in-QVD/m-p/247789#M1185127</guid>
      <dc:creator />
      <dc:date>2011-10-18T13:45:19Z</dc:date>
    </item>
  </channel>
</rss>

