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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
paulyeo11
Master
Master

Case 860 How to let user access SOURCE = A1 and A2 data ?

Hi All

My Raw data :-

SOURCE -SALES
A1 - 1
A2 - 2
B1 - 3
B2 - 4

My Load script :-

Directory;
LOAD SOURCE,
SALES
FROM
DATA.xlsx
(ooxml, embedded labels, table is COY_A);

Section Access Script :-

SECTION ACCESS;
LOAD * INLINE [
ACCESS, NTNAME, SOURCE

ADMIN, domain\UserName,*
USER,domain\UserNameA1,A1
USER,domain\UserNameB1,B1

];

SECTION APPLICATION;

Now i need to let one group of user can Access A1 and A2 SOURCE data.

I try :-

USER,domain\UserNameA,A1&A2

it does not work.

Hope some one can advise me.

Paul Yeo

 

1 Solution

Accepted Solutions
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Try this:

SECTION ACCESS;
LOAD * INLINE [
ACCESS, NTNAME, SOURCE

ADMIN, domain\UserName,*
USER,domain\UserNameA,A1
USER,domain\UserNameA,A2
USER,domain\UserNameB,B1

];

View solution in original post

2 Replies
Arthur_Fong
Partner - Specialist III
Partner - Specialist III

Try this:

SECTION ACCESS;
LOAD * INLINE [
ACCESS, NTNAME, SOURCE

ADMIN, domain\UserName,*
USER,domain\UserNameA,A1
USER,domain\UserNameA,A2
USER,domain\UserNameB,B1

];

paulyeo11
Master
Master
Author

Hi Sir

Thank you , it work .