<?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 Hide / modify information in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Hide-modify-information/m-p/481778#M556206</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hello QlikView gurus.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a technical question about hiding information. Let me explain myself. As a common practice, our consultant office asks us to modify every single job we do in qlikview, say, a SIB about sales, to transform every single row containing client names, item names, addresses, etc about our clients to a number, to say, Client Juan Pérez is transformed to Client 574, so we can use the work we did in future QlikView presentations, while protecting our clients privacy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is: we usually use the autonumber() function to do the job. But, now we have a QVW document without the source info (QVD's), so we can't modify the document using script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There's a way to use functions directly on the listboxes expression, or in the straight/pivot/charts to transform the information? Like using something like the autonumber() or replace()?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Jul 2013 15:44:42 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-07-15T15:44:42Z</dc:date>
    <item>
      <title>Hide / modify information</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-modify-information/m-p/481778#M556206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hello QlikView gurus.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a technical question about hiding information. Let me explain myself. As a common practice, our consultant office asks us to modify every single job we do in qlikview, say, a SIB about sales, to transform every single row containing client names, item names, addresses, etc about our clients to a number, to say, Client Juan Pérez is transformed to Client 574, so we can use the work we did in future QlikView presentations, while protecting our clients privacy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is: we usually use the autonumber() function to do the job. But, now we have a QVW document without the source info (QVD's), so we can't modify the document using script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There's a way to use functions directly on the listboxes expression, or in the straight/pivot/charts to transform the information? Like using something like the autonumber() or replace()?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jul 2013 15:44:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-modify-information/m-p/481778#M556206</guid>
      <dc:creator />
      <dc:date>2013-07-15T15:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Hide / modify information</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-modify-information/m-p/481779#M556207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe the function Rand() would be of use?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='Cient ' &amp;amp; Round(rand()*1000, 1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with the your dimension being the clients, and just hide that column&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jul 2013 15:57:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-modify-information/m-p/481779#M556207</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2013-07-15T15:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: Hide / modify information</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-modify-information/m-p/481780#M556208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the scrambing feature (document properties - scrambling) to scramble field values permanently (until next reload). This will render Juan Perez into something quite unreadable, give it a try &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you can also use the hash function in QV to scramble-like field values in the front end only, e.g. in a list box field expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(len(ClientName),hash128(ClientName))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the real names are still in your data model!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jul 2013 16:00:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-modify-information/m-p/481780#M556208</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-07-15T16:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: Hide / modify information</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-modify-information/m-p/481781#M556209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use hash128 (fieldname) in the script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can click scramble go to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Settings&lt;/P&gt;&lt;P&gt;Document properties&lt;/P&gt;&lt;P&gt;Scrambling&lt;/P&gt;&lt;P&gt;Choose the field you want scrambled and click scramble&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jul 2013 18:49:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-modify-information/m-p/481781#M556209</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2013-07-15T18:49:04Z</dc:date>
    </item>
  </channel>
</rss>

