<?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 Read row-by-row (record-by-record) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Read-row-by-row-record-by-record/m-p/188693#M51853</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I need to read row-by-row from a resident table (or qvd), make some transformations to the data and append that row to the loaded-inline table.&lt;/P&gt;&lt;P&gt;Is such a thing possible?&lt;/P&gt;&lt;P&gt;Thnx,&lt;/P&gt;&lt;P&gt;Marko&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Sep 2009 19:31:29 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-09-16T19:31:29Z</dc:date>
    <item>
      <title>Read row-by-row (record-by-record)</title>
      <link>https://community.qlik.com/t5/QlikView/Read-row-by-row-record-by-record/m-p/188693#M51853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I need to read row-by-row from a resident table (or qvd), make some transformations to the data and append that row to the loaded-inline table.&lt;/P&gt;&lt;P&gt;Is such a thing possible?&lt;/P&gt;&lt;P&gt;Thnx,&lt;/P&gt;&lt;P&gt;Marko&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 19:31:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Read-row-by-row-record-by-record/m-p/188693#M51853</guid>
      <dc:creator />
      <dc:date>2009-09-16T19:31:29Z</dc:date>
    </item>
    <item>
      <title>Read row-by-row (record-by-record)</title>
      <link>https://community.qlik.com/t5/QlikView/Read-row-by-row-record-by-record/m-p/188694#M51854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marko,&lt;BR /&gt;Maybe you want to expain what exactly the issue is. From your question so far the solution is simple:&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;tab1:&lt;BR /&gt;LOAD* INLINE [&lt;BR /&gt; A, B, C&lt;BR /&gt; ...];&lt;BR /&gt;JOIN (tab1) LOAD&lt;BR /&gt; &amp;lt;expression with field1&amp;gt; as A,&lt;BR /&gt; ... as B,&lt;BR /&gt; ... as C&lt;BR /&gt;RESIDENT ... (or FROM qvd);&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 19:44:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Read-row-by-row-record-by-record/m-p/188694#M51854</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-09-16T19:44:03Z</dc:date>
    </item>
    <item>
      <title>Read row-by-row (record-by-record)</title>
      <link>https://community.qlik.com/t5/QlikView/Read-row-by-row-record-by-record/m-p/188695#M51855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marko,&lt;/P&gt;&lt;P&gt;please have a look at defining a variable (LET), "PEEK" function and "For ... Next" in QV help file.&lt;/P&gt;&lt;P&gt;And of course copy and paste from the attached application if it is useful.&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 19:54:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Read-row-by-row-record-by-record/m-p/188695#M51855</guid>
      <dc:creator />
      <dc:date>2009-09-16T19:54:05Z</dc:date>
    </item>
    <item>
      <title>Read row-by-row (record-by-record)</title>
      <link>https://community.qlik.com/t5/QlikView/Read-row-by-row-record-by-record/m-p/188696#M51856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I should have explained it more &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The issue is that I need to build a hierarchy using a table on SQL Server as a "guideline". The order of records in that table defines the hierarchy. By having counters called "ParentID" and "ID" and going through the mentioned table "row-by-row" I could generate a table that could be used for building a hierarchy:&lt;/P&gt;&lt;P&gt;ParentID, ID, Code&lt;/P&gt;&lt;P&gt;0, 1, F1&lt;/P&gt;&lt;P&gt;1, 2, F1N11&lt;/P&gt;&lt;P&gt;1, 3, F1N11A&lt;/P&gt;&lt;P&gt;0, 4, P1&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/2185.2009_2D00_09_2D00_16-15-00-19.jpg"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/2185.2009_2D00_09_2D00_16-15-00-19.jpg" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Sep 2009 20:13:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Read-row-by-row-record-by-record/m-p/188696#M51856</guid>
      <dc:creator />
      <dc:date>2009-09-16T20:13:11Z</dc:date>
    </item>
    <item>
      <title>Read row-by-row (record-by-record)</title>
      <link>https://community.qlik.com/t5/QlikView/Read-row-by-row-record-by-record/m-p/188697#M51857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's an example of building a hierarchy from knowing the level and that the rows are coming in a preorder traversal sequence. So I think this may be what you're looking to do? Or perhaps close, anyway. It's not actually doing a hierarchy load, but rather doing something similar to what a hierarchy load would do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 02:47:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Read-row-by-row-record-by-record/m-p/188697#M51857</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-09-17T02:47:36Z</dc:date>
    </item>
    <item>
      <title>Read row-by-row (record-by-record)</title>
      <link>https://community.qlik.com/t5/QlikView/Read-row-by-row-record-by-record/m-p/188698#M51858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marko,&lt;/P&gt;&lt;P&gt;reading data row by row is pretty easy using function peek(), but keep in mind that it's VERY SLOW.&lt;/P&gt;&lt;P&gt;Try to find another solutions if you can.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;DIV id="refHTML"&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Sep 2009 09:04:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Read-row-by-row-record-by-record/m-p/188698#M51858</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2009-09-17T09:04:32Z</dc:date>
    </item>
  </channel>
</rss>

