Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
ChethanKumar
Contributor II
Contributor II

Implementing the section access

Hi all,

I have to implement the section access for the below details.

Project User Value
P0 abc val0
P1 abc val1
P1 efg val2

Here the user "abc"  should get the values related to Project P0 and P1 i.e val0, val1 and val2.

Whereas  "efg" should get the values related to Project P1 only  i.e val1 and val2.

Could you please suggest me on implementing the section access for this.

2 Replies
anat
Master
Master

can you try below method:

section Access;
load * inline [
user,project
abc,p0
abc,p1
efg,p1
];
section application;
load * inline [
project,value
p0,v0
p1,v1
p1,v2
];

ChethanKumar
Contributor II
Contributor II
Author

Thank you for your reply, this can be applied for small number of data.

But am looking for large and dynamic set of data , kindly suggest