Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Access on Region

Hi all,

I'm stuck on giving specific people access to certain regions in the dashboard.

Section Application;

LOAD REGION,

     Fee

FROM

[Advanced User Access Testing.xlsx]

(ooxml, embedded labels, table is Sheet1);

SECTION    Access;

LOAD ACCESS,

     USERID,

     PASSWORD,

     REGION

FROM

[Advanced User Access Testing.xlsx]

(ooxml, embedded labels, table is Sheet2);

my Regions are: NA, EMEA, LATAM, ASIA and the fees are just a made up # for now.

My access are:

ACCESSUSERIDPASSWORDREGION
ADMINADMINADMIN
USERUSERUSER
USERAANA
USERBBEMEA
USERCC*

But when I log in as user B i can see everything still

3 Replies
Gysbert_Wassenaar

Did you enable the options Initial Data Reduction Based on Section Access and Strict Exclusion on the Opening tab of the Document Properties window?


talk is cheap, supply exceeds demand
Anonymous
Not applicable
Author

Hi,

Try below mentioned script.

PFA attached qvw for the same.

Section Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD, REGION

    ADMIN, ADMIN, ADMIN, *

    USER, A, A, EMEA

    USER, C, C, LATAM

    USER, E, E, NA

    USER, DUMMY1, DUMMY1, ASIA

];

Section Application;

Table:

LOAD * INLINE [

    REGION, NAME

    EMEA, A

    EMEA, B

    LATAM, C

    LATAM, D

    NA, E

    NA, F

    ASIA, G

    ASIA, H

    EMEA, I

];

Note: Enable property in settings (Settings-> Document Properties -> Opening -> "Initial Data Reduction Based on Section Access")

Anonymous
Not applicable
Author

Hi,

You can refer to Section Access for more information.