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

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
vikasgupta
Creator
Creator

Section Access sheet hide/show

Hi Everyone

I am using following section access script :-

---------------------------------------------------------------

Section Access;

LOAD * INLINE [

ACCESS, USERID, PASSWORD,QV_ACCESS_LEVEL

ADMIN, ADMIN, ADMIN,1

USER,USER1,U2,2

USER,USER2,U2,3

];

Section Application;

------------------------------------------------------------------

QV_ACCESS_LEVEL is user group now i wants to hide and show sheet using following condition expression in sheet properties:

=min({1} TOTAL QV_ACCESS_LEVEL)> 3

or

=min({1} TOTAL QV_ACCESS_LEVEL)= 1

But its not working can anyone guide me what is going wrong in this expression ?

Thanks

Vikas Gupta

1 Reply
Not applicable

Hi

You should only have one value of QV_ACCESS_LEVEL when you login, because the login will reduce that to only the value for your own user name, so your expression should simply be:

Only(QV_ACCESS_LEVEL) > 3

or

Only(QV_ACCESS_LEVEL) = 1

or even

QV_ACCESS_LEVEL > 3