Skip to main content

QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Skip the ticket, Chat with Qlik Support instead for instant assistance.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Sheet level access QlikView

Hi, i´m trying to apply Sheet Level access for users into my document.

I´ve created an excel file named "sheetlevel" with this configuration :

 

USERIDHOJA1 HOJA2
USER111
USER201

On my test I wanna allow USER1 to see all sheets and USER2 to see only sheet named as "HOJA2". But when I log with any of two users, I can see both sheets.

I´ve already set the "condition" son Sheet Properties tab.

If you have any Wiki related with the configuration of Sheet level access, it will be welcome.

Could you help me? I don´t know what I am doing wrong.

4 Replies
Anil_Babu_Samineni

There is no password in excel, But it is asking Password when i open document? Can you bell on that

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
vishweshwarisun
Partner - Creator
Partner - Creator

hi,

try this

Section Access;

LOAD * INLINE [

    ACCESS, USERID

    ADMIN, USER1

    USER, USER2

];

Section Application;

SheetAccessMatrix:

LOAD *

inline[

USERID,SH02,SH04

USER1,1,0

USER2,0,1

];

vijetas42
Specialist
Specialist

Have you checked strict exclusion option from document properties->opening->check option Initial data reduction based on section access->strict exclusion

Anonymous
Not applicable
Author

Thanks!! That was my problem! Now it works!!!