<?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 System Fucntion - Input in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/System-Fucntion-Input/m-p/1141426#M373909</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;I have taken the following piece of code from the reference manual:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Input('Enter value', 'Input box') as v,&lt;/P&gt;&lt;P&gt;Recno () as r&lt;/P&gt;&lt;P&gt;autogenerate 3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While executing the above function, two times the input box opens and accepts the value. But the value of&amp;nbsp; r is (1,2,3) and the value of v is (1,2). My expectation is, the value&amp;nbsp; of v should also be (1,2,3) because in the autogenerate, we have the value of 3. Why I am getting only (1,2) for v instead of (1,2,3)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 04 Sep 2016 00:18:46 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-09-04T00:18:46Z</dc:date>
    <item>
      <title>System Fucntion - Input</title>
      <link>https://community.qlik.com/t5/QlikView/System-Fucntion-Input/m-p/1141426#M373909</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;I have taken the following piece of code from the reference manual:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Input('Enter value', 'Input box') as v,&lt;/P&gt;&lt;P&gt;Recno () as r&lt;/P&gt;&lt;P&gt;autogenerate 3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While executing the above function, two times the input box opens and accepts the value. But the value of&amp;nbsp; r is (1,2,3) and the value of v is (1,2). My expectation is, the value&amp;nbsp; of v should also be (1,2,3) because in the autogenerate, we have the value of 3. Why I am getting only (1,2) for v instead of (1,2,3)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Sep 2016 00:18:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/System-Fucntion-Input/m-p/1141426#M373909</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-04T00:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: System Fucntion - Input</title>
      <link>https://community.qlik.com/t5/QlikView/System-Fucntion-Input/m-p/1141427#M373910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use RowNo() instead of &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Recno() &lt;/SPAN&gt;like below:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Input('Enter value', 'Input box') as v,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Rowno () as r&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;autogenerate 3;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Sep 2016 01:20:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/System-Fucntion-Input/m-p/1141427#M373910</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-09-04T01:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: System Fucntion - Input</title>
      <link>https://community.qlik.com/t5/QlikView/System-Fucntion-Input/m-p/1141428#M373911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thirumala,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue is not with Recno or Rowno. The issue is why the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;input box opens only two times eventhough the autogenerate occurs 3 times.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Sep 2016 03:48:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/System-Fucntion-Input/m-p/1141428#M373911</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-04T03:48:44Z</dc:date>
    </item>
  </channel>
</rss>

