<?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 function of Autogenerate() ?? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/WHat-is-the-function-of-Autogenerate/m-p/784512#M1047512</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;Let say if i have use dfollowing code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data3:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Input('Enter value', 'Input box') AS InputValue&lt;/P&gt;&lt;P&gt;AutoGenerate 3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in this case it is asking value only 1 time and using same value in other repetition also. If i input value 12 , then it wil show 12 three times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it behave in same order ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Nov 2014 07:40:07 GMT</pubDate>
    <dc:creator>nikhilgarg</dc:creator>
    <dc:date>2014-11-20T07:40:07Z</dc:date>
    <item>
      <title>WHat is the function of Autogenerate() ??</title>
      <link>https://community.qlik.com/t5/QlikView/WHat-is-the-function-of-Autogenerate/m-p/784508#M1047508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HEy,&lt;/P&gt;&lt;P&gt;WHat is the function of Autogenerate() ??&lt;/P&gt;&lt;P&gt;Example autogenerate 1 , autogenerate 2 , autogenerate 10 ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2014 07:06:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHat-is-the-function-of-Autogenerate/m-p/784508#M1047508</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-11-20T07:06:11Z</dc:date>
    </item>
    <item>
      <title>Re: WHat is the function of Autogenerate() ??</title>
      <link>https://community.qlik.com/t5/QlikView/WHat-is-the-function-of-Autogenerate/m-p/784509#M1047509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use autogenerate when you are building data in your script, the number specify the number of records to be generated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2014 07:08:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHat-is-the-function-of-Autogenerate/m-p/784509#M1047509</guid>
      <dc:creator>maleksafa</dc:creator>
      <dc:date>2014-11-20T07:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: WHat is the function of Autogenerate() ??</title>
      <link>https://community.qlik.com/t5/QlikView/WHat-is-the-function-of-Autogenerate/m-p/784510#M1047510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;If i say :&lt;/P&gt;&lt;P&gt;autogenerate 5;&lt;/P&gt;&lt;P&gt;Then , in this case will it ask me 5 times values to input or will it ask me only once and repeat the same value 5 times ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2014 07:21:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHat-is-the-function-of-Autogenerate/m-p/784510#M1047510</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-11-20T07:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: WHat is the function of Autogenerate() ??</title>
      <link>https://community.qlik.com/t5/QlikView/WHat-is-the-function-of-Autogenerate/m-p/784511#M1047511</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;Autogenerate() is used in Load statement to iterate record by record without any table.&amp;nbsp; Check example below to generate some sample data the AutoGenerate() is used&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SampleData:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; Rand() * 100 AS Sequence,&lt;/P&gt;&lt;P&gt;'Product' &amp;amp; Ceil(Rand()) * 100 AS Product&lt;/P&gt;&lt;P&gt;Ceil(Rand()) * 1000 AS Sales&lt;/P&gt;&lt;P&gt;Autogenerate(3);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you execute above script 3 sample records are generated, it is similar to for loop which loops 3 times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2014 07:29:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHat-is-the-function-of-Autogenerate/m-p/784511#M1047511</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-11-20T07:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: WHat is the function of Autogenerate() ??</title>
      <link>https://community.qlik.com/t5/QlikView/WHat-is-the-function-of-Autogenerate/m-p/784512#M1047512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;Let say if i have use dfollowing code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data3:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Input('Enter value', 'Input box') AS InputValue&lt;/P&gt;&lt;P&gt;AutoGenerate 3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in this case it is asking value only 1 time and using same value in other repetition also. If i input value 12 , then it wil show 12 three times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it behave in same order ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2014 07:40:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHat-is-the-function-of-Autogenerate/m-p/784512#M1047512</guid>
      <dc:creator>nikhilgarg</dc:creator>
      <dc:date>2014-11-20T07:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: WHat is the function of Autogenerate() ??</title>
      <link>https://community.qlik.com/t5/QlikView/WHat-is-the-function-of-Autogenerate/m-p/784513#M1047513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure about Input() in AutoGenerate(), may the functionality is like that for Input() i.e, it will take input only for one time.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to input 3 values, use 3 load statements and concatenate all the tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2014 07:53:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/WHat-is-the-function-of-Autogenerate/m-p/784513#M1047513</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-11-20T07:53:59Z</dc:date>
    </item>
  </channel>
</rss>

