<?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 Section access and list box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Section-access-and-list-box/m-p/951116#M526995</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can find that there are some values are missing in the list box.&lt;/P&gt;&lt;P&gt;Especially null values (-------) while I was using the section access strict exclusion.&lt;/P&gt;&lt;P&gt;how can I aviod this it spoils the whole look and feel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sundar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Nov 2015 10:05:43 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-11-06T10:05:43Z</dc:date>
    <item>
      <title>Section access and list box</title>
      <link>https://community.qlik.com/t5/QlikView/Section-access-and-list-box/m-p/951116#M526995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can find that there are some values are missing in the list box.&lt;/P&gt;&lt;P&gt;Especially null values (-------) while I was using the section access strict exclusion.&lt;/P&gt;&lt;P&gt;how can I aviod this it spoils the whole look and feel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sundar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2015 10:05:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-access-and-list-box/m-p/951116#M526995</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-06T10:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Section access and list box</title>
      <link>https://community.qlik.com/t5/QlikView/Section-access-and-list-box/m-p/951117#M526996</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;Can you post an example of what you mean, i.e. a before and after?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think from the description people are only seeing what selectors they can access via the set up of the section access. As far as i am aware that is how section access works when reducing the data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An option could be checking peoples access on individual charts and objects and not reducing the data, but it can be a lot of work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2015 12:53:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-access-and-list-box/m-p/951117#M526996</guid>
      <dc:creator>Mark_Little</dc:creator>
      <dc:date>2015-11-06T12:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Section access and list box</title>
      <link>https://community.qlik.com/t5/QlikView/Section-access-and-list-box/m-p/951118#M526997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By using section access with strict exclusion a user could only see/access data to which he/she is associated to and I think this isn't possible with NULL even if you used a star is *; wildmatch - it will be applied only to real values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This meant you need to fill NULL with real values, maybe like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(len(trim(YourField))=0, 'NULL / Missing Values', YourField)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More to NULL could you find here: &lt;A href="https://community.qlik.com/qlik-blogpost/3093"&gt;Finding NULL&lt;/A&gt;.&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, 06 Nov 2015 13:41:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-access-and-list-box/m-p/951118#M526997</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-11-06T13:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Section access and list box</title>
      <link>https://community.qlik.com/t5/QlikView/Section-access-and-list-box/m-p/951119#M526998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do at script level for that list box field like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(len(trim(FieldNAme))&amp;gt;0,'&lt;SPAN style="font-size: 13.3333330154419px;"&gt;FieldNAme') as &lt;SPAN style="font-size: 13.3333330154419px;"&gt;FieldNAme&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2015 13:44:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Section-access-and-list-box/m-p/951119#M526998</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-06T13:44:02Z</dc:date>
    </item>
  </channel>
</rss>

