<?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: Hiding or Masking a (Member ID/Name) Column in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2420279#M95616</link>
    <description>&lt;P&gt;If you are good with anonymizing the Name field throughout your app, you can add this at the end of your script.&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;AutoNumber Name;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;-Rob&lt;/P&gt;</description>
    <pubDate>Fri, 16 Feb 2024 23:43:04 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2024-02-16T23:43:04Z</dc:date>
    <item>
      <title>Hiding or Masking a (Member ID/Name) Column</title>
      <link>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2420193#M95607</link>
      <description>&lt;P&gt;Hi-&lt;/P&gt;
&lt;P&gt;I'm new to working in qlik sense. I have a simple table of members that I am sorting based on cost incurred.&lt;/P&gt;
&lt;P&gt;For this table I only show the top 20 costing members. I would like to show this without revealing the member's ID/name.&lt;/P&gt;
&lt;P&gt;For instance:&lt;/P&gt;
&lt;P&gt;I'd like to go from:&lt;/P&gt;
&lt;P&gt;Rank&amp;nbsp; &amp;nbsp; &amp;nbsp; Name&amp;nbsp; &amp;nbsp; &amp;nbsp; Cost&lt;/P&gt;
&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; John&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $50&lt;/P&gt;
&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Mike&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $45&lt;/P&gt;
&lt;P&gt;...etc&lt;/P&gt;
&lt;P&gt;to simply:&lt;/P&gt;
&lt;P&gt;Rank&amp;nbsp; &amp;nbsp; &amp;nbsp; Cost&lt;/P&gt;
&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $50&lt;/P&gt;
&lt;P&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $45&lt;/P&gt;
&lt;P&gt;... etc&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the best way to do this? Is there a way to hide a column or alias a name to be equal to it's rank?&lt;/P&gt;
&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2024 20:11:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2420193#M95607</guid>
      <dc:creator>Naude716</dc:creator>
      <dc:date>2024-02-16T20:11:48Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding or Masking a (Member ID/Name) Column</title>
      <link>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2420237#M95610</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/288701"&gt;@Naude716&lt;/a&gt;&amp;nbsp;In this case, Why do you need to add this Name as dimension is the first place.&lt;/P&gt;
&lt;P&gt;Secondly, You can add for Column If condition as&amp;nbsp; "1=0"&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2024 20:54:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2420237#M95610</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2024-02-16T20:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding or Masking a (Member ID/Name) Column</title>
      <link>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2420260#M95614</link>
      <description>&lt;P&gt;I need it to group the dollar amounts ranked by member ID. Name was just an easy visual example. When I set the "show column when" value to something to make it hide, it will condense all 20 of these member data rows into one row, and sum the dollars.&lt;/P&gt;
&lt;P&gt;When the dashboard is published I cannot give out the identities of those top 20 members that had the most cost, but I need to show how much each of the top 20 members incurred in cost separately. Also there are some other columns I need to show other than cost such as primary diagnosis which is something that can't be summed anyways.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2024 21:50:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2420260#M95614</guid>
      <dc:creator>Naude716</dc:creator>
      <dc:date>2024-02-16T21:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding or Masking a (Member ID/Name) Column</title>
      <link>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2420279#M95616</link>
      <description>&lt;P&gt;If you are good with anonymizing the Name field throughout your app, you can add this at the end of your script.&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;AutoNumber Name;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Fri, 16 Feb 2024 23:43:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2420279#M95616</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2024-02-16T23:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding or Masking a (Member ID/Name) Column</title>
      <link>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2423254#M95892</link>
      <description>&lt;P&gt;Thanks, that is a perfectly acceptable answer. Is there anyway I could have an autonumber'd ID and preserve the original variable side by side?&lt;/P&gt;
&lt;P&gt;I tried: &lt;FONT face="courier new,courier"&gt;AutoNumber Name as 'AnonID';&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;-but the loader did not like that.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 02:09:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2423254#M95892</guid>
      <dc:creator>Naude716</dc:creator>
      <dc:date>2024-02-26T02:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding or Masking a (Member ID/Name) Column</title>
      <link>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2423668#M95923</link>
      <description>&lt;P&gt;Load the field twice when you load the source, then autonumber one of them.&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Load&amp;nbsp;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Name,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Name as NameOriginal,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;From ....;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;AutoNumber Name;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;-Rob&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 16:34:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2423668#M95923</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2024-02-26T16:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding or Masking a (Member ID/Name) Column</title>
      <link>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2423669#M95924</link>
      <description>&lt;P&gt;Thank you very much!&lt;/P&gt;
&lt;P&gt;That is a big help.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2024 16:36:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hiding-or-Masking-a-Member-ID-Name-Column/m-p/2423669#M95924</guid>
      <dc:creator>Naude716</dc:creator>
      <dc:date>2024-02-26T16:36:25Z</dc:date>
    </item>
  </channel>
</rss>

