<?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: What is the difference between rowno and recno? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-rowno-and-recno/m-p/890566#M1002016</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;row no() returns the numeric count value from resultant table(output)&lt;/P&gt;&lt;P&gt;recno() returns the numeric count value from loaded source table...(input)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Jun 2015 20:18:56 GMT</pubDate>
    <dc:creator>pratap6699</dc:creator>
    <dc:date>2015-06-01T20:18:56Z</dc:date>
    <item>
      <title>What is the difference between rowno and recno?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-rowno-and-recno/m-p/890563#M1002013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pls give replay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2015 17:09:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-rowno-and-recno/m-p/890563#M1002013</guid>
      <dc:creator />
      <dc:date>2015-06-01T17:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between rowno and recno?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-rowno-and-recno/m-p/890564#M1002014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rowno() gives you the row number of the &lt;EM&gt;&lt;STRONG&gt;output&lt;/STRONG&gt;&lt;/EM&gt; row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Recno() &lt;SPAN style="font-size: 13.3333330154419px;"&gt;gives you the row number of the &lt;STRONG&gt;&lt;EM&gt;input &lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;row.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The QV Desktop Help describes it well, pasted in below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor437"&gt;&lt;/A&gt;&lt;A name="RecNo"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;RecNo( )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Returns an integer for the number of the currently read row of the source data table. The first record is number 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor438"&gt;&lt;/A&gt;&lt;A name="RowNo"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;RowNo( )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Returns an integer for the position of the current row in the resulting QlikView internal table. In contrast to &lt;SPAN class="Bold"&gt;RecNo( )&lt;/SPAN&gt;, which counts the records in the raw data table, the &lt;SPAN class="Bold"&gt;RowNo( )&lt;/SPAN&gt; function does not count records that are excluded by &lt;SPAN class="Bold"&gt;where&lt;/SPAN&gt; clauses and is not reset when a raw data table is concatenated to another. The first row is number 1.&lt;/P&gt;&lt;P class="note"&gt;&lt;STRONG&gt;Note!&lt;/STRONG&gt; &lt;BR /&gt;If you use preceding load, that is, a number of stacked &lt;STRONG&gt;Load&lt;/STRONG&gt; statements reading from the same table, you can only use &lt;SPAN class="Bold"&gt;RowNo( )&lt;/SPAN&gt; in the top &lt;STRONG&gt;Load&lt;/STRONG&gt; statement. If you use &lt;SPAN class="Bold"&gt;RowNo( )&lt;/SPAN&gt; in subsequent preceding &lt;STRONG&gt;Load&lt;/STRONG&gt; statements, 0 is returned.&lt;/P&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;P&gt;Raw data tables:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;Tab1.csv&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;A&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;B&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;aa&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;cc&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;ee&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;Tab2.csv&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;A&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;B&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;5&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;xx&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;yy&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;6&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;zz&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;QVTab:&lt;/P&gt;&lt;P class="Code"&gt;Load *, RecNo( ), RowNo( ) from Tab1.csv where A&amp;lt;&amp;gt;2;&lt;/P&gt;&lt;P class="Code"&gt;Load *, RecNo( ), RowNo( ) from Tab2.csv where A&amp;lt;&amp;gt;5;&lt;/P&gt;&lt;P&gt;The resulting QlikView internal table:&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;QVTab&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN class="Bold"&gt;A&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN class="Bold"&gt;B&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN class="Bold"&gt;RecNo( )&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;&lt;SPAN class="Bold"&gt;RowNo( )&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;aa&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;ee&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;yy&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;6&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;zz&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P align="center" style="text-align: center;"&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2015 17:20:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-rowno-and-recno/m-p/890564#M1002014</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-01T17:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between rowno and recno?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-rowno-and-recno/m-p/890565#M1002015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let us assume we have one table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;id,name&lt;/P&gt;&lt;P&gt;1,us&lt;/P&gt;&lt;P&gt;2,uk&lt;/P&gt;&lt;P&gt;3,ind&lt;/P&gt;&lt;P&gt;4,pak&lt;/P&gt;&lt;P&gt;5,ken&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the above table if we write rowno(),recno() functions then the output will be like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;id,name,rowno(),recno()&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;1,us,1,1&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;2,uk,2,2&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;3,ind,3,3&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;4,pak,4,4&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;5,ken,5,5&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;later i delete one row in above table then the out put will be &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;id,name,rowno(),recno()&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;1,us,1,1&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;2,uk,2,2&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;3,ind,3,3&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;5,ken,4,5&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;here rowno() is output and recno() is input&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;regards,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;hari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2015 17:31:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-rowno-and-recno/m-p/890565#M1002015</guid>
      <dc:creator>hari8088</dc:creator>
      <dc:date>2015-06-01T17:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between rowno and recno?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-rowno-and-recno/m-p/890566#M1002016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;row no() returns the numeric count value from resultant table(output)&lt;/P&gt;&lt;P&gt;recno() returns the numeric count value from loaded source table...(input)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2015 20:18:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-rowno-and-recno/m-p/890566#M1002016</guid>
      <dc:creator>pratap6699</dc:creator>
      <dc:date>2015-06-01T20:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between rowno and recno?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-rowno-and-recno/m-p/890567#M1002017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe also helpful:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3292"&gt;Counters in the Load&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3896"&gt;RecNo or RowNo?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Jun 2015 23:33:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-rowno-and-recno/m-p/890567#M1002017</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-06-01T23:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between rowno and recno?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-rowno-and-recno/m-p/1858099#M1215981</link>
      <description>&lt;P&gt;So for what I see in the example in a Concatenated table, RecNo() returns a value based on the fundamental tables and not the product of the concatenation. Am I right?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Nov 2021 10:24:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-rowno-and-recno/m-p/1858099#M1215981</guid>
      <dc:creator>Mario_ES</dc:creator>
      <dc:date>2021-11-11T10:24:28Z</dc:date>
    </item>
  </channel>
</rss>

