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

section access from excel file

Hello everyone!

I haven't had that much experience with section access and would be thankful for some help.

The end user app has dimension Region with values "North", "Central", "South" and "Others".

My access file looks as below, my aim is to create a clean QVD to load into the end user app. Do I have to repeat rows for users with more than one region? What is the best way of doing this?

NameAD accNorthCentralSouthOthers
name1acc1yes   
name2acc2  yes 
name3acc3 yes  
name4acc4yesyesyesyes
name5acc5yesyesyesyes
name6acc6yesyesyesyes
name7acc7yesyesyesyes
name8acc8yesyesyesyes
name9acc9yesyesyesyes
name10acc10yesyesyesyes
name11acc11yesyesyesyes
QlikView Admin accountlocal\qvadminyesyesyesyes

 

 

Labels (1)
2 Replies
QFabian
Specialist III
Specialist III

hi, here attached you have an example of excel file for section access.

This is the script :

Section Access;

LOAD
ACCESS,
NTNAME,
[USERID],
[PASSWORD],
GROUP,
[PROFILE]
FROM [seguridad.xls] (biff, embedded labels, table is Access$);


Section Application;
star is *;

Grupos:
LOAD
GROUP,
Zona
FROM [seguridad.xls] (biff, embedded labels, table is Aplication$);

QFabian
Meg00
Contributor III
Contributor III
Author

Thank you,

but I can not change how the excel file looks. 

managed to get a clean table with crosstable function.

The only question remaining is, will it work is the same user has multiple rows in the table when that user should have access to all Regions?