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: 
Anonymous
Not applicable

section access?

Section Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD,

    ADMIN, ADMIN,ADMIN

    USER, GK, 1234

    USER, GKC, 1234

];

Section Application;

LOAD * Inline

[

USERID,SHEET ID

ADMIN,*

GKC,SH03

GK,SH02

];

hi this is my script

i want see for admin all sheets but i cant ?

the reason is i have written condition in sheet level like 

if(userid='gkc',1,0)  ( imade capital letters only)

how to see all sheets while admin login ?

1 Solution

Accepted Solutions
giakoum
Partner - Master II
Partner - Master II

if(userid='gkc' or ACCESS='ADMIN',1,0)

View solution in original post

3 Replies
giakoum
Partner - Master II
Partner - Master II

if(userid='gkc' or ACCESS='ADMIN',1,0)

pokassov
Specialist
Specialist

Hi!


Try this

if(userid='gkc' or userid='admin',1,0)

Anonymous
Not applicable
Author

Hats off guys