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

Section Access: all region not visible to admin access ?

Hi,

I have created a section access based on Region .

every thing is running fine but admin not able to see all region.

i mean when login with admin i.e sunil and password 1234 .it showing region field blank.

i dont know why this happening.

see the attached file.

Regards

Sunil

Sunil Chauhan
1 Solution

Accepted Solutions
hic
Former Employee
Former Employee

The reason is that you use the USERID as reducing field.Try instead using REGION as reducing field:

Section Access;

star is *;

Tab1:

LOAD upper(Access) as ACCESS,

     upper(USERID) as USERID,

     Upper(Password) as PASSWORD

     FROM test21.xlsx (ooxml, embedded labels, table is Sheet1);

Tab2:

LOAD

          Upper(USERID) as USERID,

          Upper(Region) as REGION

          FROM test21.xlsx (ooxml, embedded labels, table is Sheet2);

Section Application;

Tab3:

LOAD

          Upper(Region) as REGION

          FROM test21.xlsx (ooxml, embedded labels, table is Sheet2) Where Len(Trim(Region))>1;

HIC

View solution in original post

2 Replies
SunilChauhan
Champion
Champion
Author

any help on this?

Sunil Chauhan
hic
Former Employee
Former Employee

The reason is that you use the USERID as reducing field.Try instead using REGION as reducing field:

Section Access;

star is *;

Tab1:

LOAD upper(Access) as ACCESS,

     upper(USERID) as USERID,

     Upper(Password) as PASSWORD

     FROM test21.xlsx (ooxml, embedded labels, table is Sheet1);

Tab2:

LOAD

          Upper(USERID) as USERID,

          Upper(Region) as REGION

          FROM test21.xlsx (ooxml, embedded labels, table is Sheet2);

Section Application;

Tab3:

LOAD

          Upper(Region) as REGION

          FROM test21.xlsx (ooxml, embedded labels, table is Sheet2) Where Len(Trim(Region))>1;

HIC