<?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: IterNo() vs RowNo() in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209629#M881824</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IMHO there is a pretty simple explanation for this that positions three related functions - &lt;SPAN style="font-family: 'courier new', courier;"&gt;RecNo()&lt;/SPAN&gt;, &lt;SPAN style="font-family: 'courier new', courier;"&gt;IterNo()&lt;/SPAN&gt; and &lt;SPAN style="font-family: 'courier new', courier;"&gt;RowNo()&lt;/SPAN&gt; - where they belong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Imagine an imaginary LOAD statement with a source, a target internal table, and a WHILE suffix. Like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;TableA:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD &lt;EM&gt;columnExpressionsOptionallyUsingAnyOfTheThreeFunctions&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;FROM SourceA&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;WHILE &lt;EM&gt;WhileExpressionUsingIterNo&lt;/EM&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This LOAD statement will execute multiple times, and as long as there are input records. When reading record N (a single row), the following happens:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN style="color: #ff6600; font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;RecNo()&lt;/STRONG&gt;&lt;/SPAN&gt; returns N, as this is the row position in the original data source&lt;/LI&gt;&lt;LI&gt;The LOAD statement loops and executes the column expressions a number of times on the original input data &lt;EM&gt;from this single source row as long as the WHILE expression is true&lt;/EM&gt;. The loop counter is hidden, but IterNo() returns the current loop counter value, starting from &lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;SPAN style="color: #ff6600; font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;IterNo()&lt;/STRONG&gt;&lt;/SPAN&gt; = 1 ... P&lt;/SPAN&gt;. So in essence, 1 input row begets P output rows.&lt;/LI&gt;&lt;LI&gt;The output of this repeating LOAD is stored in the internal table, let's say starting at position &lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;SPAN style="color: #ff6600;"&gt;&lt;STRONG&gt;RowNo()&lt;/STRONG&gt;&lt;/SPAN&gt; = X+1&lt;/SPAN&gt; (X being determined by the previous executions and loops) The last loop result will be stored at position &lt;SPAN style="font-family: 'courier new', courier;"&gt;RowNo() = X+P&lt;/SPAN&gt;.&lt;/LI&gt;&lt;LI&gt;Repeat from the first bullet for source row &lt;SPAN style="font-family: 'courier new', courier;"&gt;RecNo() = N+1&lt;/SPAN&gt; until the data source is exhausted.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Net result:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Inputrow RecNo() = N&lt;/EM&gt;&amp;nbsp; -&amp;gt; &lt;EM&gt;Processed IterNo()=1...P times&lt;/EM&gt;&amp;nbsp; -&amp;gt; &lt;EM&gt;Resulting rows stored as RowNo() = X+1 ... X+P&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="IterNo vs RowNo thread235819.jpg" class="jive-image image-1" src="/legacyfs/online/155265_IterNo vs RowNo thread235819.jpg" style="height: 203px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that depending on your While expression, the P value can vary between 1 and an arbitrary upper limit for each input row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Edit] Added a picture "because they're worth a thousand words..."&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 05 Mar 2017 17:29:33 GMT</pubDate>
    <dc:creator>Peter_Cammaert</dc:creator>
    <dc:date>2017-03-05T17:29:33Z</dc:date>
    <item>
      <title>IterNo() vs RowNo()</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209622#M881817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please give some examples on differences between IterNo() vs RowNo().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually i have done some testing and found one different with autogenerate you can see in sample file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached file here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Nihhal.&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/IterNo-vs-RowNo/m-p/1209622#M881817</guid>
      <dc:creator>nihhalmca</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo() vs RowNo()</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209623#M881818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AFAIK, IterNo() function only when you use While statement. Whereas RecNo() and RowNo() works with or without While. IterNo() is similar to using a loop find it useful in creating dates between start and end date for example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Update: Did not see your qvw, but you do have an example of start and end date in there &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Oct 2016 14:01:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209623#M881818</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-10T14:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo() vs RowNo()</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209624#M881819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the HELP explains both functions quite well.&lt;/P&gt;&lt;P&gt;(and I believe you know the iterno() help page, your sample code is part of the HELP page)&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/CounterFunctions/IterNo.htm" title="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/CounterFunctions/IterNo.htm"&gt;https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/CounterFunctions/IterNo.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you still have problems seeing the fundamental difference, have a look at&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3274"&gt;Loops in the Script&lt;/A&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;Looking at your your script code comments, it looks like you also want to have a look at the difference between a RESIDENT and a PRECEDING LOAD:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2972"&gt;Preceding Load&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Oct 2016 14:59:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209624#M881819</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-10-10T14:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo() vs RowNo()</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209625#M881820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;we can use RowNo() with while like IterNo(). Both give same results, try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vMin=NUM(MakeDate(2010,12,30));&lt;/P&gt;&lt;P&gt;LET vMax=NUM(Today());&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALENDAR: //Using RowNo()&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Date($(vMin)+RowNo()-1,'DD/MM/YYYY') AS Date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;AutoGenerate 1&lt;/P&gt;&lt;P&gt;While $(vMin)+RowNo()&amp;lt;=$(vMax);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALENDAR: //Using IterNo()&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Date($(vMin)+IterNo()-1,'DD/MM/YYYY') AS Date&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;AutoGenerate 1&lt;/P&gt;&lt;P&gt;While $(vMin)+IterNo()-1&amp;lt;=$(vMax);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:&lt;/P&gt;&lt;P&gt;Both will give same result.&lt;/P&gt;&lt;P&gt;Combination of RowNo() and IterNo() also will give same result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Mar 2017 07:47:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209625#M881820</guid>
      <dc:creator>nihhalmca</dc:creator>
      <dc:date>2017-03-05T07:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo() vs RowNo()</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209626#M881821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nihhal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think Sunny will express you their opinion. Let me say that your code snippet - a particular case of coincidence results. This is due to the equality of sequential read one record, in which the values of RowNo() and IterNo() are the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to create a table of this &lt;SPAN style="font-size: 13.3333px;"&gt;type&lt;/SPAN&gt; from your table "CALENDAR", for example,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date&lt;/P&gt;&lt;P&gt;01/01/2017&lt;/P&gt;&lt;P&gt;01/01/2017&lt;/P&gt;&lt;P&gt;02/01/2017&lt;/P&gt;&lt;P&gt;02/01/2017&lt;/P&gt;&lt;P&gt;03/01/2017&lt;/P&gt;&lt;P&gt;03/01/2017&lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each record of table &lt;SPAN style="font-size: 13.3333px;"&gt;"CALENDAR"&lt;/SPAN&gt; should just read twice&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALENDAR3:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Date as DateIterNo&lt;/P&gt;&lt;P&gt;Resident CALENDAR&lt;/P&gt;&lt;P&gt;While IterNo() &amp;lt; 3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And here is how will look the values &lt;SPAN style="font-size: 13.3333px;"&gt;IterNo() &lt;/SPAN&gt; and RowNo() during the loading table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IterNo()&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; RowNo()&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;01/01/2017&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;01/01/2017&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;02/01/2017&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;02/01/2017&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;03/01/2017&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;03/01/2017&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;etc.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;So your code works. But this is a particular case. The whole assignment the functions &lt;SPAN style="font-size: 13.3333px;"&gt; IterNo()&lt;/SPAN&gt; and &lt;SPAN style="font-size: 13.3333px;"&gt;RowNo()&lt;/SPAN&gt; different.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Andrey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Mar 2017 08:24:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209626#M881821</guid>
      <dc:creator>ahaahaaha</dc:creator>
      <dc:date>2017-03-05T08:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo() vs RowNo()</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209627#M881822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrey, thanks for your explanation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately i could not understand much, if you do not mind can you tell direct definition to the &lt;STRONG&gt;IterNo()&lt;/STRONG&gt; in easy manner please and which cases we use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Nihhal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Mar 2017 12:41:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209627#M881822</guid>
      <dc:creator>nihhalmca</dc:creator>
      <dc:date>2017-03-05T12:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo() vs RowNo()</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209628#M881823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nihhal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IterNo() - this is &lt;SPAN style="font-size: 13.3333px;"&gt;counter &lt;/SPAN&gt;the number of times considered &lt;SPAN style="font-size: 13.3333px;"&gt;the current record&lt;/SPAN&gt; in the source table at load. Each current record will be re-read from the source table until the condition WHILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Source table, for example&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Table1:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;ID1,&amp;nbsp;&amp;nbsp; ID2,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Volume&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 7&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;I want to get out of Table1 the following table&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Table2&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;ID&amp;nbsp;&amp;nbsp;&amp;nbsp; Volume1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10&lt;/P&gt;&lt;P&gt;5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20&lt;/P&gt;&lt;P&gt;6&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20&lt;/P&gt;&lt;P&gt;3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30&lt;/P&gt;&lt;P&gt;7&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each record must be read twice. it is easy to do with IterNo()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;If(InerNo() = 1, ID1, ID2) as ID&lt;/P&gt;&lt;P&gt;Volume as Volume1&lt;/P&gt;&lt;P&gt;Resident Table1&lt;/P&gt;&lt;P&gt;While IterNo() &amp;lt;=2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In short like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andrey&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Mar 2017 14:23:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209628#M881823</guid>
      <dc:creator>ahaahaaha</dc:creator>
      <dc:date>2017-03-05T14:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo() vs RowNo()</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209629#M881824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IMHO there is a pretty simple explanation for this that positions three related functions - &lt;SPAN style="font-family: 'courier new', courier;"&gt;RecNo()&lt;/SPAN&gt;, &lt;SPAN style="font-family: 'courier new', courier;"&gt;IterNo()&lt;/SPAN&gt; and &lt;SPAN style="font-family: 'courier new', courier;"&gt;RowNo()&lt;/SPAN&gt; - where they belong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Imagine an imaginary LOAD statement with a source, a target internal table, and a WHILE suffix. Like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;TableA:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD &lt;EM&gt;columnExpressionsOptionallyUsingAnyOfTheThreeFunctions&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;FROM SourceA&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;WHILE &lt;EM&gt;WhileExpressionUsingIterNo&lt;/EM&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This LOAD statement will execute multiple times, and as long as there are input records. When reading record N (a single row), the following happens:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN style="color: #ff6600; font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;RecNo()&lt;/STRONG&gt;&lt;/SPAN&gt; returns N, as this is the row position in the original data source&lt;/LI&gt;&lt;LI&gt;The LOAD statement loops and executes the column expressions a number of times on the original input data &lt;EM&gt;from this single source row as long as the WHILE expression is true&lt;/EM&gt;. The loop counter is hidden, but IterNo() returns the current loop counter value, starting from &lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;SPAN style="color: #ff6600; font-family: 'courier new', courier;"&gt;&lt;STRONG&gt;IterNo()&lt;/STRONG&gt;&lt;/SPAN&gt; = 1 ... P&lt;/SPAN&gt;. So in essence, 1 input row begets P output rows.&lt;/LI&gt;&lt;LI&gt;The output of this repeating LOAD is stored in the internal table, let's say starting at position &lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;SPAN style="color: #ff6600;"&gt;&lt;STRONG&gt;RowNo()&lt;/STRONG&gt;&lt;/SPAN&gt; = X+1&lt;/SPAN&gt; (X being determined by the previous executions and loops) The last loop result will be stored at position &lt;SPAN style="font-family: 'courier new', courier;"&gt;RowNo() = X+P&lt;/SPAN&gt;.&lt;/LI&gt;&lt;LI&gt;Repeat from the first bullet for source row &lt;SPAN style="font-family: 'courier new', courier;"&gt;RecNo() = N+1&lt;/SPAN&gt; until the data source is exhausted.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Net result:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Inputrow RecNo() = N&lt;/EM&gt;&amp;nbsp; -&amp;gt; &lt;EM&gt;Processed IterNo()=1...P times&lt;/EM&gt;&amp;nbsp; -&amp;gt; &lt;EM&gt;Resulting rows stored as RowNo() = X+1 ... X+P&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="IterNo vs RowNo thread235819.jpg" class="jive-image image-1" src="/legacyfs/online/155265_IterNo vs RowNo thread235819.jpg" style="height: 203px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that depending on your While expression, the P value can vary between 1 and an arbitrary upper limit for each input row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Edit] Added a picture "because they're worth a thousand words..."&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 05 Mar 2017 17:29:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209629#M881824</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2017-03-05T17:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo() vs RowNo()</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209630#M881825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;from help &lt;/P&gt;&lt;P class="syntax" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;RecNo( )&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;Returns an integer for the number of the currently read row of the internal table. The first record is number 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;A name="kanchor436" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #266fc8;"&gt;&lt;/A&gt;&lt;A name="RowNo" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #266fc8;"&gt;&lt;/A&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;RowNo( )&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;Returns an integer for the position of the current row in the resulting QlikView internal table. In contrast to &lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;RecNo( )&lt;/SPAN&gt;, which counts the records in the raw data table, the &lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;RowNo( )&lt;/SPAN&gt; function does not count records that are excluded by &lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;where&lt;/SPAN&gt; clauses and is not reset when a raw data table is &lt;A _jive_internal="true" href="https://community.qlik.com/thread" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #266fc8;"&gt;&lt;EM style="font-weight: inherit; font-family: inherit;"&gt;Concatenation&lt;/EM&gt;&lt;/A&gt; to another. The first row is number 1.&lt;/P&gt;&lt;P class="example" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;Examples:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;Raw data tables:&lt;/P&gt;&lt;TABLE style="border: 0px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Tab1.csv&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;A&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;B&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;aa&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;cc&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; 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 style="border: 0px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Tab2.csv&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;A&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;B&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;5&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;xx&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;yy&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;6&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; 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" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;QVTab:&lt;/P&gt;&lt;P class="Code" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;Load *, RecNo( ), RowNo( ) from Tab1.csv where A&amp;lt;&amp;gt;2;&lt;/P&gt;&lt;P class="Code" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;Load *, RecNo( ), RowNo( ) from Tab2.csv where A&amp;lt;&amp;gt;5;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;The resulting QlikView internal table:&lt;/P&gt;&lt;TABLE style="border: 0px; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;QVTab&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;A&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;B&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;RecNo( )&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;&lt;SPAN class="Bold" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;RowNo( )&lt;/SPAN&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;aa&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;ee&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;yy&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;6&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;zz&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD style="padding-right: 4px; padding-left: 4px; border: 0px; font-style: inherit; font-family: inherit;"&gt;&lt;P align="center" style="font-weight: inherit; font-style: inherit; font-family: inherit; text-align: center;"&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Mar 2017 05:45:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-vs-RowNo/m-p/1209630#M881825</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2017-03-06T05:45:47Z</dc:date>
    </item>
  </channel>
</rss>

