<?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: Need help on section access in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-help-on-section-access/m-p/1568446#M742574</link>
    <description>&lt;P&gt;Apologies if I am using your post for my question, is just that I couldn't find how to open a discussion in this page.&lt;/P&gt;&lt;P&gt;I need some help&amp;nbsp;in QlikSense for&amp;nbsp;the below scenario:&lt;/P&gt;&lt;P&gt;Column A contains an identifier that will be duplicate if an RT and GF Date exist, if only one exist then the Qlik sense table shows only 1, what I need is a formula for a column that will show the GF Date in the RT row and vice versa. is that possible??&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Column A&lt;/TD&gt;&lt;TD&gt;Column B&lt;/TD&gt;&lt;TD&gt;Column C&lt;/TD&gt;&lt;TD&gt;Desired Column:&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123456789&lt;/TD&gt;&lt;TD&gt;RT&lt;/TD&gt;&lt;TD&gt;12/13/2019&lt;/TD&gt;&lt;TD&gt;11/10/2018&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123456789&lt;/TD&gt;&lt;TD&gt;GF&lt;/TD&gt;&lt;TD&gt;11/10/2018&lt;/TD&gt;&lt;TD&gt;12/13/2019&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;987654321&lt;/TD&gt;&lt;TD&gt;RT&lt;/TD&gt;&lt;TD&gt;1/4/2019&lt;/TD&gt;&lt;TD&gt;8/3/2017&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;987654321&lt;/TD&gt;&lt;TD&gt;GF&lt;/TD&gt;&lt;TD&gt;8/3/2017&lt;/TD&gt;&lt;TD&gt;1/4/2017&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
    <pubDate>Thu, 11 Apr 2019 22:03:45 GMT</pubDate>
    <dc:creator>cokiston</dc:creator>
    <dc:date>2019-04-11T22:03:45Z</dc:date>
    <item>
      <title>Need help on section access</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-on-section-access/m-p/1568333#M742572</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;i want to implement the section access by region ..&lt;/P&gt;&lt;P&gt;i have a region field in Database&amp;nbsp;&lt;/P&gt;&lt;P&gt;Region&lt;/P&gt;&lt;P&gt;AMS&lt;/P&gt;&lt;P&gt;APJ&lt;/P&gt;&lt;P&gt;EMEA.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so&amp;nbsp; admin should see&amp;nbsp; 3 regions data&amp;nbsp; and&amp;nbsp; &amp;nbsp;who ever having the access for perticular region they should see respective region data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;im using below script but its not working as expected.&lt;/P&gt;&lt;P&gt;SECTION&amp;nbsp;Access;&lt;/P&gt;&lt;P&gt;UserList:&lt;BR /&gt;LOAD&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;UPPER(ACCESS)&amp;nbsp;AS&amp;nbsp;ACCESS,&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;UPPER(NTNAME)&amp;nbsp;AS&amp;nbsp;NTNAME,&amp;nbsp;&lt;BR /&gt;upper(DATAFIELD) as REGION&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;FROM&lt;BR /&gt;[..\data.qvd](qvd);&lt;/P&gt;&lt;P&gt;Concatenate&lt;BR /&gt;LOAD&amp;nbsp;*&amp;nbsp;Inline&amp;nbsp;[&lt;BR /&gt;ACCESS, NTNAME, REGION&lt;BR /&gt;ADMIN, AUTH\$qv09, *&lt;BR /&gt;ADMIN, AUTH\$qv08, *&lt;/P&gt;&lt;P&gt;];&amp;nbsp;&lt;BR /&gt;SECTION&amp;nbsp;Application;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 03:52:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-on-section-access/m-p/1568333#M742572</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2024-11-16T03:52:58Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on section access</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-on-section-access/m-p/1568443#M742573</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The star only include all values mentioned in the Section Access REGION-field. Adding the three users will allow your admins to see all three.&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;SECTION Access;

UserList:
LOAD 
     UPPER(ACCESS) AS ACCESS, 
     UPPER(NTNAME) AS NTNAME, 
upper(DATAFIELD) as REGION    
FROM
[..\data.qvd](qvd);

Concatenate
LOAD * Inline [
ACCESS, NTNAME, REGION
ADMIN, AUTH\$qv09, *
ADMIN, AUTH\$qv08, *&lt;BR /&gt;&lt;STRONG&gt;USER, AUTH\AMSUser, AMS&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;USER, AUTH\APJUser, APJ&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;USER, AUTH\EMEAUser, EMEA&lt;/STRONG&gt;

]; 
SECTION Application;

&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2019 21:38:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-on-section-access/m-p/1568443#M742573</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-04-11T21:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on section access</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-on-section-access/m-p/1568446#M742574</link>
      <description>&lt;P&gt;Apologies if I am using your post for my question, is just that I couldn't find how to open a discussion in this page.&lt;/P&gt;&lt;P&gt;I need some help&amp;nbsp;in QlikSense for&amp;nbsp;the below scenario:&lt;/P&gt;&lt;P&gt;Column A contains an identifier that will be duplicate if an RT and GF Date exist, if only one exist then the Qlik sense table shows only 1, what I need is a formula for a column that will show the GF Date in the RT row and vice versa. is that possible??&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Column A&lt;/TD&gt;&lt;TD&gt;Column B&lt;/TD&gt;&lt;TD&gt;Column C&lt;/TD&gt;&lt;TD&gt;Desired Column:&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123456789&lt;/TD&gt;&lt;TD&gt;RT&lt;/TD&gt;&lt;TD&gt;12/13/2019&lt;/TD&gt;&lt;TD&gt;11/10/2018&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123456789&lt;/TD&gt;&lt;TD&gt;GF&lt;/TD&gt;&lt;TD&gt;11/10/2018&lt;/TD&gt;&lt;TD&gt;12/13/2019&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;987654321&lt;/TD&gt;&lt;TD&gt;RT&lt;/TD&gt;&lt;TD&gt;1/4/2019&lt;/TD&gt;&lt;TD&gt;8/3/2017&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;987654321&lt;/TD&gt;&lt;TD&gt;GF&lt;/TD&gt;&lt;TD&gt;8/3/2017&lt;/TD&gt;&lt;TD&gt;1/4/2017&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 11 Apr 2019 22:03:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-on-section-access/m-p/1568446#M742574</guid>
      <dc:creator>cokiston</dc:creator>
      <dc:date>2019-04-11T22:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on section access</title>
      <link>https://community.qlik.com/t5/QlikView/Need-help-on-section-access/m-p/1570063#M742575</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN class=""&gt;&lt;A href="https://community.qlik.com/t5/user/viewprofilepage/user-id/25001" target="_self"&gt;Vegar&lt;/A&gt;&amp;nbsp; thanks for your response.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;the way you given is working perfectly.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;but the user info we are getting as seperate qvd.&amp;nbsp; from there it will fetch ..now its working fine.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2019 15:27:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-help-on-section-access/m-p/1570063#M742575</guid>
      <dc:creator>soniasweety</dc:creator>
      <dc:date>2019-04-16T15:27:01Z</dc:date>
    </item>
  </channel>
</rss>

