Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
vikasmahajan

Security Rule to block partial dashboards for Qlik Sense Dashboards

Hi all,

I have implemented security rule to block export to excel , but suppose we want to give export  partial users &

Block Partial users in Qllik Sense.

Regards

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
3 Replies
Levi_Turner
Employee
Employee

Hey Vikas,

I am not following, what do you mean partial users? What distinguishes a partial from a full user in Qlik Sense?

vikasmahajan
Author

For certain group like sales of users it should be open and for certain group like finance it should be blocked

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
Levi_Turner
Employee
Employee

If you want to block exporting of app data then you would want to disable the default rule ExportAppData.

The conditions of this rule is : resource.HasPrivilege("read") and !user.IsAnonymous()

The semantic meaning here is that any user who can see an app can export data so long as they are not anonymous.

If you wanted to block a subset of users from exporting then a rule like this would achieve the goal:

resource.HasPrivilege("read") and user.group="Group who should be able to export"

(or any attribute which you can select on)