<?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 difference between Autonumber and Autonumberhash? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884958#M308627</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob/all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry to comeback late to this question I am still trying to understand it further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why does hash128('abc') return &lt;SPAN style="color: #3d3d3d; font-family: Helvetica;"&gt;'M5(:B5)O1QEOW^6XQX9%7'&lt;/SPAN&gt;? Why does it select that as the output?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am just trying to understand it better so hope it's OK &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, 20 Jul 2015 10:41:30 GMT</pubDate>
    <dc:creator>jblomqvist</dc:creator>
    <dc:date>2015-07-20T10:41:30Z</dc:date>
    <item>
      <title>What is the difference between Autonumber and Autonumberhash?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884954#M308623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody please tell me what is the difference between Autonumber and Autonumberhash in QlikView?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand much better with a example so if anyone can show the difference it would be great please! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 14:19:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884954#M308623</guid>
      <dc:creator>jblomqvist</dc:creator>
      <dc:date>2015-04-22T14:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between Autonumber and Autonumberhash?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884955#M308624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AutoNumber() is a translate function that takes in a value and returns an integer that is than "mapped " to that value. The mapping is dependent on the order in which AutoNumber() is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AutoNumber('A') = 1&lt;/P&gt;&lt;P&gt;AutoNumber('X') = 2&lt;/P&gt;&lt;P&gt;AutoNumber('A') = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Hash* functions take in value, process it through an algorithm and returns a "hash" representation of the input value. For a given input value, Hash*() will always return the same string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hash128('abc') = M5(:B5)O1QEOW^6XQX9%7'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AutoNumberHash*() first hashes the string, then autonumbers it. It is the same as:&lt;/P&gt;&lt;P&gt;AutoNumber(Hash128('abc'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The AutoNumberHash() functions in QlikView were a mistake (in my opinion). There is no practical need for them and they can be safely ignored. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com/" rel="nofollow"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://robwunderlich.com/" rel="nofollow"&gt;http://robwunderlich.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Apr 2015 17:42:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884955#M308624</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-04-22T17:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between Autonumber and Autonumberhash?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884956#M308625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply. Could you please explain what is meant by "hash"? I have heard of the terminology but never really understood it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, what does the output mean after the "=" in your example: hash128('abc') = M5(:B5)O1QEOW^6XQX9%7'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;? What is that output in human terms &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 10:08:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884956#M308625</guid>
      <dc:creator>jblomqvist</dc:creator>
      <dc:date>2015-04-23T10:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between Autonumber and Autonumberhash?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884957#M308626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wikipedia explains the general idea of hash function better than I can.&lt;/P&gt;&lt;P&gt;&lt;A href="http://en.wikipedia.org/wiki/Hash_function" title="http://en.wikipedia.org/wiki/Hash_function"&gt;Hash function - Wikipedia, the free encyclopedia&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my example:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;hash128('abc') = 'M5(:B5)O1QEOW^6XQX9%7'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;means that if you invoke the hash128 function with the parameter 'abc', it will return the string '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;M5(:B5)O1QEOW^6XQX9%7'. So if you used it in load statement like&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;hash128('abc') as X&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;X would contain the value &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;'&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;M5(:B5)O1QEOW^6XQX9%7'..&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Are you considering a particular application of these functions or trying to understand some already written code?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;-Rob&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2015 13:49:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884957#M308626</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-04-23T13:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between Autonumber and Autonumberhash?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884958#M308627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob/all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry to comeback late to this question I am still trying to understand it further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why does hash128('abc') return &lt;SPAN style="color: #3d3d3d; font-family: Helvetica;"&gt;'M5(:B5)O1QEOW^6XQX9%7'&lt;/SPAN&gt;? Why does it select that as the output?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am just trying to understand it better so hope it's OK &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, 20 Jul 2015 10:41:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884958#M308627</guid>
      <dc:creator>jblomqvist</dc:creator>
      <dc:date>2015-07-20T10:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between Autonumber and Autonumberhash?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884959#M308628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor443"&gt;&lt;/A&gt;&lt;A name="autonumber"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;autonumber(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;expression[ , AutoID]&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Returns a unique integer value for each distinct evaluated value of &lt;SPAN class="Italic"&gt;expression&lt;/SPAN&gt; encountered during the script execution. This function can be used e.g. for creating a compact memory representation of a complex key. &lt;/P&gt;&lt;P&gt;In order to create multiple counter instances if the &lt;SPAN class="Bold"&gt;autonumber&lt;/SPAN&gt; function is used on different keys within the script, an optional parameter &lt;SPAN class="Italic"&gt;AutoID&lt;/SPAN&gt; can be used for naming each counter. &lt;/P&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;P class="Code"&gt;autonumber( Region&amp;amp;Year&amp;amp;Month )&lt;/P&gt;&lt;P class="Code"&gt;autonumber( Region&amp;amp;Year&amp;amp;Month, 'Ctr1' )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor444"&gt;&lt;/A&gt;&lt;A name="autonumberhash128"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;autonumberhash128(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;expression {, expression}&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Calculates a 128-bit hash of the combined input expression values and the returns a unique integer value for each distinct hash value encountered during the script execution. This function can be used e.g. for creating a compact memory representation of a complex key. &lt;/P&gt;&lt;P class="example"&gt;Example:&lt;/P&gt;&lt;P class="Code"&gt;autonumberhash128 ( Region, Year, Month )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2015 10:45:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884959#M308628</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2015-07-20T10:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between Autonumber and Autonumberhash?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884960#M308629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it good option to use AutoNumberHash(..) in generating unique key in our application. Key will be built wit combination of columns.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2015 11:01:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884960#M308629</guid>
      <dc:creator>manojkulkarni</dc:creator>
      <dc:date>2015-07-20T11:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between Autonumber and Autonumberhash?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884961#M308630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Why does hash128('abc') return &lt;SPAN style="color: #3d3d3d; font-family: Helvetica;"&gt;'M5(:B5)O1QEOW^6XQX9%7'&lt;/SPAN&gt;? Why does it select that as the output?&lt;/P&gt;
&lt;P style="min-height: 8pt; padding: 0px;"&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;That's the result of some quite complex maths.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The hash function is a mapping function that allows to map arbitrary input values into a fixed value range (128 bit in that case), without revealing any insight to the input value, i.e. the returned string is not meaningful (it should look like a randomly selected value from a 128 bit text value range) and you won't and should not be able to trace back from that string to 'abc'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2015 11:15:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884961#M308630</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-07-20T11:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between Autonumber and Autonumberhash?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884962#M308631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, AutoNumberHash() is a reasonable way to create unique keys from a combination of columns. As long as the keys are used in the same QVW. They may not be stored in QVDs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2015 22:18:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884962#M308631</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-07-20T22:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between Autonumber and Autonumberhash?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884963#M308632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would you recommend for creating a surrogate key for a dimension with a compound primary key. I thought that AutoNumberHash256 was a good approach for creating a surrogate key, but your comment here says not. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this mean that the &lt;SPAN style="font-size: 13.3333px;"&gt;AutoNumberHash256 function would return different integers for the same value in different datasets depending on how many unique hashes there were?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2015 13:35:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884963#M308632</guid>
      <dc:creator>DavidFoster1</dc:creator>
      <dc:date>2015-10-16T13:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between Autonumber and Autonumberhash?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884964#M308633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All the Autonumbering functions guarantee the correctness of the numbers within a single load. A subsequent load may not produce the same values, so they cannot be used as a meaningful key in a QVD intended for subsequent reloading and combining with other data (eg an incremental load)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2015 13:40:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884964#M308633</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-10-16T13:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: What is the difference between Autonumber and Autonumberhash?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884965#M308634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a little correction for Rob's first example, the second 'A' would get the same number as the first 'A'.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AutoNumber('A') = 1&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AutoNumber('X') = 2&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;AutoNumber('A') = 1&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;&lt;BR /&gt;&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;&lt;BR /&gt;&lt;/STRONG&gt;AutoNumber produces the same output every time for the same input as long as you are in one QVW.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Oct 2015 13:47:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-the-difference-between-Autonumber-and-Autonumberhash/m-p/884965#M308634</guid>
      <dc:creator>Anders_Eriksson</dc:creator>
      <dc:date>2015-10-16T13:47:21Z</dc:date>
    </item>
  </channel>
</rss>

