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: 
louise119
Creator III
Creator III

Section Access in QlikSense

I want to group users (Group1: US members, Group2: UK members, Group3: Asia members, etc.) and control access to one app.
Also, I would like to control the display of Regions displayed in the filter by group. For example, when Group1 (US member) opens the app, I want to display only US in the Region part displayed in the filter and not display other countries (UK, JP, Thai, etc.).

I think I'll use section access, but I don't know how to write a script.

Can you show me with a suitable example?

2 Replies
Or
MVP
MVP

// Load your entire script here

Section Access;

Load * INLINE [
ACCESS, USERID, LANG
ADMIN, User1, EN
ADMIN, USer2, FR];

Section Application;

Load * INLINE [
LANG
EN
ES
FR
];

You can then apply either a default bookmark or a set of e.g. Only(LANG).

louise119
Creator III
Creator III
Author

Thank you so much.
Does this section access needs a Admin rights?