Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want user A to not see the field 'MATERIAL' in the app. This is the source for my section access.
This is my section access code:
Section Access;
LOAD
"ACCESS",
upper( "USERID"),
OMIT
FROM [lib://Access/test1.xlsx]
(ooxml, embedded labels, table is Sheet1);
Section Application;
Welcome:
LOAD
Upper("USERID")as userid,
NAME,
OMIT
FROM [lib://Access)/test1.xlsx]
(ooxml, embedded labels, table is Sheet1);
However, the user is still able to see the field MATERIAL.
What am I doing wrrong?
Then don't make user A an Admin. Admin will see all the data. See this blog post: Tips and tricks for section access in Qlik Sense (2.0+)
User B is seeing the data.
Hi,
Try thsi
Section Access;
LOAD
"ACCESS",
upper( "USERID") AS USERID,
OMIT
FROM [lib://Access/test1.xlsx]
(ooxml, embedded labels, table is Sheet1);
Section Application;
Welcome:
LOAD
Upper("USERID")as USERID,
NAME,
OMIT
FROM [lib://Access)/test1.xlsx]
(ooxml, embedded labels, table is Sheet1);
Also check this link below.
Column level access using Section Access
Various levels of security implementation using Section Access
Regards,
Jagan.