Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

reduce data by user using section access

Hi all,

     i encounter a problem when edit sectoin access. My goal is : USER1 can see the data from Area 'A' and USER2 can see the data of Brand 'X'. That's to say, USER1 reduce data by only field 'Area' no matter other fields are listed in the section access .

I did a test like below:

section access;

load * inline

[ACCESS,USERID,PASSWORD,%AREA,%BRAND

ADMIN,USER0,123

USER,USER1,123,A,*

USER,USER0,123,*,X

];

section application;

Sales:

load * inline [

Area,Brand,Sales

A,X,10

A,Y,20

B,X,30

B,Y,40

];

left join (Sales)

LOAD * inline

[Brand,%BRAND

X,X

Y,Y

];

LEFT JOIN (Sales)

load * inline

[Area,%AREA

A,A

B,B

];

the result is : Both USER1 and USER2 see the data of Brand X in area A .

Thanks

Zhou    

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

See this blog post for how to deal with such OR constructions: Basics for complex authorization


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

See this blog post for how to deal with such OR constructions: Basics for complex authorization


talk is cheap, supply exceeds demand
Not applicable
Author

you're great !