<?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: Hide listbox based on Section Access in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446581#M1274095</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats great, thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one question..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you explain this code - max({1} HIDEFLAG)=0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there another way of saying - =IF(HIDEFLAG=0, listbox.visible = False)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that isnt the correct code, but is there something similar?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Nov 2012 16:38:53 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-11-19T16:38:53Z</dc:date>
    <item>
      <title>Hide listbox based on Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446577#M1274084</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;I have two user groups with separate logins to my QVW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I alter the apperance of certain objects based on a users access login?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446577#M1274084</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Hide listbox based on Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446578#M1274087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The simplest way to do that would be to create an island that contains one or more flags. Add these flag values to your section access reduction fields. Then hide/show objects based on whether a flag value exists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vlad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2012 14:58:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446578#M1274087</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2012-11-19T14:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Hide listbox based on Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446579#M1274090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help, how can I create an Island with flags?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2012 15:02:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446579#M1274090</guid>
      <dc:creator />
      <dc:date>2012-11-19T15:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Hide listbox based on Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446580#M1274093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just create a simple inline table with fields in all-caps like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;myIsland:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;HIDEFLAG&lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;0&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in section access, you can have something like this for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;NTNAME &lt;/TD&gt;&lt;TD&gt;ACCESS &lt;/TD&gt;&lt;TD&gt;HIDEFLAG &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BOB &lt;/TD&gt;&lt;TD&gt;USER &lt;/TD&gt;&lt;TD&gt;1 &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;DAVE &lt;/TD&gt;&lt;TD&gt;ADMIN &lt;/TD&gt;&lt;TD&gt;0 &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a listbox you want to hide, under Layout make the conditional show condition max({1} HIDEFLAG)=0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vlad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2012 15:35:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446580#M1274093</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2012-11-19T15:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Hide listbox based on Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446581#M1274095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats great, thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one question..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you explain this code - max({1} HIDEFLAG)=0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there another way of saying - =IF(HIDEFLAG=0, listbox.visible = False)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that isnt the correct code, but is there something similar?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2012 16:38:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446581#M1274095</guid>
      <dc:creator />
      <dc:date>2012-11-19T16:38:53Z</dc:date>
    </item>
    <item>
      <title>Re: Hide listbox based on Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446582#M1274097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, almost. Section Access works like any other table in QlikView in terms of reductions--except that the reductions are permanent. So the section access code above will ensure that when BOB logs in, the HIDEFLAG value in the data model will only have a value of 1. Therefore, max({1} HIDEFLAG)=0 will return false and the listbox will be hidden.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Glad to help--please verify correct answers &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;Vlad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2012 17:20:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446582#M1274097</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2012-11-19T17:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Hide listbox based on Section Access</title>
      <link>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446583#M1274098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like to give an example of this. The attach document has three users and based on the user it will either show or hide the SalesPerson List Box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dave is the Admin and will see the list box&lt;/P&gt;&lt;P&gt;Bob is a User and will not see the list box&lt;/P&gt;&lt;P&gt;Bill is a User and will see the list box. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is based on the code that Vlad provided. The Condition to show or hide the list box is on the Layout Tab under the List Box properties.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bill&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2012 13:10:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hide-listbox-based-on-Section-Access/m-p/446583#M1274098</guid>
      <dc:creator>Bill_Britt</dc:creator>
      <dc:date>2012-11-20T13:10:33Z</dc:date>
    </item>
  </channel>
</rss>

