<?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: Auto Number function in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Auto-Number-function/m-p/624521#M229744</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Dhiraj&lt;/P&gt;&lt;P&gt;please find Attachment &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and please go through&amp;nbsp; following&amp;nbsp; link&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;A href="http://qlikviewnotes.blogspot.in/2013/09/autonumber-key-fields-and-sequential.html" title="http://qlikviewnotes.blogspot.in/2013/09/autonumber-key-fields-and-sequential.html"&gt;Qlikview Notes: Autonumber() Key Fields and Sequential Integer Optimization&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Feb 2014 14:14:20 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-02-24T14:14:20Z</dc:date>
    <item>
      <title>Auto Number function</title>
      <link>https://community.qlik.com/t5/QlikView/Auto-Number-function/m-p/624519#M229742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone please give me a scenario where we can apply the auto number() function with example.&lt;/P&gt;&lt;P&gt;I'm not getting how to use auto number() function and howz it work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Feb 2014 14:06:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Auto-Number-function/m-p/624519#M229742</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-24T14:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Number function</title>
      <link>https://community.qlik.com/t5/QlikView/Auto-Number-function/m-p/624520#M229743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have a key fields which is long or made up of several fields one way to make them shorter and less memory consuming is to use autonumber to assign an integer rather then a string,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load autonumber( Region&amp;amp;Year&amp;amp;Month, 'Ctr1' ) as %Key,&lt;/P&gt;&lt;P&gt;Region,&lt;/P&gt;&lt;P&gt;Year,&lt;/P&gt;&lt;P&gt;Month&lt;/P&gt;&lt;P&gt;From Table;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Feb 2014 14:13:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Auto-Number-function/m-p/624520#M229743</guid>
      <dc:creator>adamwilson</dc:creator>
      <dc:date>2014-02-24T14:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Number function</title>
      <link>https://community.qlik.com/t5/QlikView/Auto-Number-function/m-p/624521#M229744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Dhiraj&lt;/P&gt;&lt;P&gt;please find Attachment &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and please go through&amp;nbsp; following&amp;nbsp; link&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;A href="http://qlikviewnotes.blogspot.in/2013/09/autonumber-key-fields-and-sequential.html" title="http://qlikviewnotes.blogspot.in/2013/09/autonumber-key-fields-and-sequential.html"&gt;Qlikview Notes: Autonumber() Key Fields and Sequential Integer Optimization&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Feb 2014 14:14:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Auto-Number-function/m-p/624521#M229744</guid>
      <dc:creator />
      <dc:date>2014-02-24T14:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Number function</title>
      <link>https://community.qlik.com/t5/QlikView/Auto-Number-function/m-p/624522#M229745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Dhiraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Autonumber function is very useful mostly for a data model's memory reduction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, if your model has a key like %Pk_Customer_Product_City with 1,000,000 of different values like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10010010_980099002_New York&lt;/P&gt;&lt;P&gt;10310010_980069002_London.... and so on...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, you may consider using autonumber(%Pk_Customer_Product_City) As %Pk_Customer_Product_City and it will change each distinct value for a different integer value... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3 ... .and so on... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In summary, I have used this function in order to reduce the memory usage, mainly with the PK fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Feb 2014 14:16:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Auto-Number-function/m-p/624522#M229745</guid>
      <dc:creator>julian_rodriguez</dc:creator>
      <dc:date>2014-02-24T14:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Number function</title>
      <link>https://community.qlik.com/t5/QlikView/Auto-Number-function/m-p/624523#M229746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&amp;nbsp; qliklearn,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply I understood ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Feb 2014 14:19:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Auto-Number-function/m-p/624523#M229746</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-24T14:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Auto Number function</title>
      <link>https://community.qlik.com/t5/QlikView/Auto-Number-function/m-p/624524#M229747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot julian for the reply .....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Feb 2014 14:22:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Auto-Number-function/m-p/624524#M229747</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-02-24T14:22:20Z</dc:date>
    </item>
  </channel>
</rss>

