<?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 Specify values to exclude in Section Access in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Specify-values-to-exclude-in-Section-Access/m-p/310668#M707476</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;You can try Exclude(Exists()) or Not In would exclude the data from the Qlikview file.&amp;nbsp; Is it ok for you.&amp;nbsp; But the above solution will keep the data in Qlikview file and show/hides the data based on the logged in user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Feb 2012 04:59:00 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2012-02-24T04:59:00Z</dc:date>
    <item>
      <title>Specify values to exclude in Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Specify-values-to-exclude-in-Section-Access/m-p/310665#M707473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to define values in a field to exclude for specific users in Section Access?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For instance, an organisation may have 500 products and they want users to see all of them except 5.&amp;nbsp; Instead of specifying 495 products a user does have access to, can you specify the 5 that should be excluded?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2012 03:49:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Specify-values-to-exclude-in-Section-Access/m-p/310665#M707473</guid>
      <dc:creator />
      <dc:date>2012-02-23T03:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Specify values to exclude in Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Specify-values-to-exclude-in-Section-Access/m-p/310666#M707474</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;You can do this by arriving a additional Field like ProductCategory which has two values like 'Show', 'Hide' in the Products table.&amp;nbsp; All the 495 products should have 'Show' value and the remaining 5 Products should have 'Hide'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use similar script like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Section Access;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCESS, USERID, PASSWORD, REDUCTION&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ADMIN, Admin, password, *&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; USER, Sales, password1, 1&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;Section Application;&lt;/P&gt;&lt;P&gt;star is *;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Departments:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; REDUCTION, ProductCategory&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, Show&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, Hide];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sales:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Match(Product, 'Product1', 'Product2', 'Product3','Product4','Product5'), 'Hide', 'Show') AS ProductCategory //Product 1-5 are products to hide from users&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally, you should select Settings -&amp;gt; Document Properties -&amp;gt; Opening tab -&amp;gt; select&amp;nbsp; "Initial Data Reduction based on Section Access"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2012 05:40:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Specify-values-to-exclude-in-Section-Access/m-p/310666#M707474</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-02-23T05:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Specify values to exclude in Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Specify-values-to-exclude-in-Section-Access/m-p/310667#M707475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply Jagan.&lt;/P&gt;&lt;P&gt;This would work, but it is not as elegant as it could be with an "exclude" or "not in" style function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2012 03:13:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Specify-values-to-exclude-in-Section-Access/m-p/310667#M707475</guid>
      <dc:creator />
      <dc:date>2012-02-24T03:13:44Z</dc:date>
    </item>
    <item>
      <title>Specify values to exclude in Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Specify-values-to-exclude-in-Section-Access/m-p/310668#M707476</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;You can try Exclude(Exists()) or Not In would exclude the data from the Qlikview file.&amp;nbsp; Is it ok for you.&amp;nbsp; But the above solution will keep the data in Qlikview file and show/hides the data based on the logged in user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2012 04:59:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Specify-values-to-exclude-in-Section-Access/m-p/310668#M707476</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-02-24T04:59:00Z</dc:date>
    </item>
    <item>
      <title>Specify values to exclude in Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Specify-values-to-exclude-in-Section-Access/m-p/310669#M707477</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The first option is preferable.&amp;nbsp; There would be users who need to view all data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 00:11:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Specify-values-to-exclude-in-Section-Access/m-p/310669#M707477</guid>
      <dc:creator />
      <dc:date>2012-02-27T00:11:44Z</dc:date>
    </item>
  </channel>
</rss>

