<?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: MASKED DATA CALCULATION in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/MASKED-DATA-CALCULATION/m-p/914127#M317094</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marco ,I have implemented the logic and it worked.&lt;/P&gt;&lt;P&gt;Many thanks for the sample&amp;nbsp; qvw and code logic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Jul 2015 10:53:28 GMT</pubDate>
    <dc:creator>aj0031724</dc:creator>
    <dc:date>2015-07-27T10:53:28Z</dc:date>
    <item>
      <title>MASKED DATA CALCULATION</title>
      <link>https://community.qlik.com/t5/QlikView/MASKED-DATA-CALCULATION/m-p/914123#M317090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Team,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a requirement to show masked data when user doe snot have the valid priviliges instead of actual data.&lt;/P&gt;&lt;P&gt;Maksing is done with&amp;nbsp; asterisk "*''&amp;nbsp; deending on number of digits to masked&amp;nbsp; required by user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now the real problem comes when I want to show count of x based on&amp;nbsp; masked data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here count comes correct for actual data as all are unique but count gets wrong when done by Masked data as because it is getting clubbed together with similar pattern of data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;actual data ---count of x is 8&lt;/P&gt;&lt;P&gt;1) 12345&lt;/P&gt;&lt;P&gt;2)12389&lt;/P&gt;&lt;P&gt;3)12378&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Masked data representation of above is where last 2 digits have been masked:&lt;/P&gt;&lt;P&gt;1) 123**&lt;/P&gt;&lt;P&gt;2)123**&lt;/P&gt;&lt;P&gt;3)123**&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now as here masked data become same for all actal data here count comes in TOTAL rather than individual&amp;nbsp; I am getting only one row with 123** with count of x as 24(8+8+8). which is wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we are using straight table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how can I show the correct&amp;nbsp; count for masked data as well.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 13:28:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MASKED-DATA-CALCULATION/m-p/914123#M317090</guid>
      <dc:creator>aj0031724</dc:creator>
      <dc:date>2015-07-24T13:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: MASKED DATA CALCULATION</title>
      <link>https://community.qlik.com/t5/QlikView/MASKED-DATA-CALCULATION/m-p/914124#M317091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could load this field twice - one with your masked logic and one with autonumber(OriginField) as FieldForCounter. But are the data real confidental you should use section access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 13:36:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MASKED-DATA-CALCULATION/m-p/914124#M317091</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-07-24T13:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: MASKED DATA CALCULATION</title>
      <link>https://community.qlik.com/t5/QlikView/MASKED-DATA-CALCULATION/m-p/914125#M317092</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;one solution could be also:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_173935_Pic1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/93979_QlikCommunity_Thread_173935_Pic1.png" style="height: 324px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14377792166069904" jivemacro_uid="_14377792166069904"&gt;
&lt;P&gt;table1:&lt;/P&gt;
&lt;P&gt;LOAD Ceil(Rand()*200)+12300 as [actual data]&lt;/P&gt;
&lt;P&gt;AutoGenerate 1000;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Left Join&lt;/P&gt;
&lt;P&gt;LOAD [actual data],&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dual(Left([actual data],Len([actual data])-2)&amp;amp;'**',AutoNumber([actual data])) as [masked data]&lt;/P&gt;
&lt;P&gt;Resident table1&lt;/P&gt;
&lt;P&gt;Order By [actual data];&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 23:07:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MASKED-DATA-CALCULATION/m-p/914125#M317092</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-07-24T23:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: MASKED DATA CALCULATION</title>
      <link>https://community.qlik.com/t5/QlikView/MASKED-DATA-CALCULATION/m-p/914126#M317093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marcus.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2015 10:52:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MASKED-DATA-CALCULATION/m-p/914126#M317093</guid>
      <dc:creator>aj0031724</dc:creator>
      <dc:date>2015-07-27T10:52:08Z</dc:date>
    </item>
    <item>
      <title>Re: MASKED DATA CALCULATION</title>
      <link>https://community.qlik.com/t5/QlikView/MASKED-DATA-CALCULATION/m-p/914127#M317094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marco ,I have implemented the logic and it worked.&lt;/P&gt;&lt;P&gt;Many thanks for the sample&amp;nbsp; qvw and code logic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2015 10:53:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MASKED-DATA-CALCULATION/m-p/914127#M317094</guid>
      <dc:creator>aj0031724</dc:creator>
      <dc:date>2015-07-27T10:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: MASKED DATA CALCULATION</title>
      <link>https://community.qlik.com/t5/QlikView/MASKED-DATA-CALCULATION/m-p/914128#M317095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you're welcome&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please close your thread by selecting a correct answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2015 10:55:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/MASKED-DATA-CALCULATION/m-p/914128#M317095</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-07-27T10:55:50Z</dc:date>
    </item>
  </channel>
</rss>

