Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
bnichol
Specialist
Specialist

Section Access using Excel for Reduction

I'm trying to recreate the following example, but maintaining the section access entires in an excel spreadsheet...

Section Access;

LOAD * INLINE [

ACCESS, USERID, REGION

ADMIN, ADMIN1,

USER, USER1, AFRICA

USER, USER2, AMERICA

USER, USER3, ASIA

USER, USER4, EUROPE

USER, USER5, *

];

Section Application;

I'm having difficulty generating the entry for USER5, since they need access to all regions.

Is there a way to grant section access to * using a method other than the INLINE example I provided?

Any suggestions would be appreciated,

B

1 Solution

Accepted Solutions
Not applicable

Hi,

You need to declar:

STAR IS *;

View solution in original post

4 Replies
Not applicable

Hi,

You need to declar:

STAR IS *;

bnichol
Specialist
Specialist
Author

Did you have a suggestion for the question...

Is there a way to grant section access to * using a method other than the INLINE example I provided?


Thanks,

B

Not applicable

Hi.

If i understand you're question,

You can use GROUP and the in the excel sheet declar for each GROUP the level of Security,

Section Access;

LOAD * INLINE [

ACCESS, USERID, GROUP

ADMIN, ADMIN1,

USER, USER1, AFRICA

USER, USER2, AMERICA

USER, USER3, ASIA

USER, USER4, EUROPE

USER, USER5, ALL

];

Section Application;

STAR IS *;

 

LOAD GROUP, 

     GROUP,

     VALID

FROM

Security.xlsx

(ooxml, embedded labels, table is [Sheets]);

And then iin th excel:

GROUPVALID
ALL*
AFRICAAFRICA
AMERICA

AMERICA

Hope it help.

garystrader
Partner - Creator III
Partner - Creator III

The section access table itself can also be pulled from Excel.