Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

data reduction based on session access

Dear all,

I'd like to reduce the set of data that individual users have access to with the security fields.

Below is my relatedscript, but seems like it didn't works.

my example document is also attached:

the hidden script password is 123

Section Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD, Q

    ADMIN, ADMIN1, 123, *

    USER, USER1, 123, 1

    USER, USER2, 123, 2

    USER, USER3, 123, 3

];

Section Application;

Star is *;

LOAD * INLINE [

    Quarter1, Q

    Q1, 2

    Q2, 3

    Q3, 1

    Q4, 1

];

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Go to Document Properties -> Opening        and then check 'Initial Data Reduction Based on Section Access'.

Thanks.

View solution in original post

3 Replies
tresesco
MVP
MVP

Go to Document Properties -> Opening        and then check 'Initial Data Reduction Based on Section Access'.

Thanks.

Not applicable
Author

Section Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD, Q

    ADMIN, ADMIN1, 123, *

    USER, USER1, 123, 1

    USER, USER2, 123, 2

    USER, USER3, 123, 3

];

Section Application;

JOIN

LOAD * INLINE [

    Quarter1, Q

    Q1, 2

    Q2, 3

    Q3, 1

    Q4, 1

];

HOPE IT WILL HELP U

Not applicable
Author

Wow, didn't notice that

Thanks, dear!

^V^!!