Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
nishanthi_8
Creator
Creator

Restrict the access level of dashboard in qlik sense

I want to restrict the access level for example if I select Sales from the drop down list only dashboards related to sales must be viewed. the same for other departments also. Can it be achieved in qlik sense? Any solution for that?

2 Replies
Not applicable

section access;

load * inline [

ACCESS, USERID, REDUCTION, OMIT

USER, QVNCYCLES\flp, 1, Region

USER, QVNCYCLES\kag, 2,

];

Section Access;

LOAD * INLINE [

ACCESS, USERID

Admin, A

User, B

User, C

USer, D

];

Section Application;

ChartAccessMatrix:

LOAD * INLINE [

USERID, CH01, CH02

A,1,1

B,1,0

C,0,1

D,1,1];

vlad_komarov
Partner - Specialist III
Partner - Specialist III

You cannot do that directly in QS, unfortunately. This is one of the biggest limitations of the product, IMHO.

It is based on the nature of Qlik's components dynamic layout....

There are few options you can consider:

1. Do a mashup and use JS/HTML code to show/hide your dashboards/charts.

2. Use OMIT option in Section Access to hide specific fields (but it will just remove the data from your charts while keeping charts displayed)..

I would recommend to go with option #1. It requires significant development, but will resolve your issue.

I do not think you can do much else (as far as I know Qlik is not planning to resolve it even in 3.0 release).

Regards,

Vlad