<?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: While Loop in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/While-Loop/m-p/920593#M318974</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load IterNo() as No&lt;/P&gt;&lt;P&gt;AutoGenerate 1&lt;/P&gt;&lt;P&gt;While IterNo()&amp;lt;=10;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Aug 2015 11:24:04 GMT</pubDate>
    <dc:creator>MK_QSL</dc:creator>
    <dc:date>2015-08-12T11:24:04Z</dc:date>
    <item>
      <title>While Loop</title>
      <link>https://community.qlik.com/t5/QlikView/While-Loop/m-p/920592#M318973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to print the number 1 to 10 using while loop in qlikview&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2015 11:16:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/While-Loop/m-p/920592#M318973</guid>
      <dc:creator>Mahamed_Qlik</dc:creator>
      <dc:date>2015-08-12T11:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: While Loop</title>
      <link>https://community.qlik.com/t5/QlikView/While-Loop/m-p/920593#M318974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Load IterNo() as No&lt;/P&gt;&lt;P&gt;AutoGenerate 1&lt;/P&gt;&lt;P&gt;While IterNo()&amp;lt;=10;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2015 11:24:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/While-Loop/m-p/920593#M318974</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-08-12T11:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: While Loop</title>
      <link>https://community.qlik.com/t5/QlikView/While-Loop/m-p/920594#M318975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should also be able to use RowNo() also:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Load RowNo() as No&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;AutoGenerate 10&lt;/STRONG&gt;&lt;SPAN style="line-height: 1.5em;"&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2015 11:54:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/While-Loop/m-p/920594#M318975</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-08-12T11:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: While Loop</title>
      <link>https://community.qlik.com/t5/QlikView/While-Loop/m-p/920595#M318976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;If you want to do it in a &lt;SPAN style="text-decoration: underline;"&gt;load script&lt;/SPAN&gt; and print it to the log window and the log file:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i = 1;&lt;/P&gt;&lt;P&gt;Do While i &amp;lt;= 10&lt;/P&gt;&lt;P&gt;&amp;nbsp; Trace $(i);&lt;/P&gt;&lt;P&gt;&amp;nbsp; i = i + 1;&lt;/P&gt;&lt;P&gt;Loop;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;i = 1;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Do&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp; Trace $(i);&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp; i = i + 1;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Loop &lt;SPAN style="font-size: 13.3333330154419px;"&gt;While i &amp;lt; 10&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If you want to do it in the &lt;SPAN style="text-decoration: underline;"&gt;UI of a running application&lt;/SPAN&gt; you can use this expression in for instance a text box:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Concat( ValueLoop( 1 , 10 ) , Chr(10 ) , ValueLoop( 1 , 10 ) )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; (This is really not a While but could do the same purpose...)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2015 12:14:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/While-Loop/m-p/920595#M318976</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-08-12T12:14:55Z</dc:date>
    </item>
  </channel>
</rss>

