Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Section access in qlikview

Hii everyone,

Guys i have query with section access ,

1.I have three use a,b,c and each user different data

a=1,2 b: 3,5,8 and c=all

please share some ideas,with coding.

Thanks

1 Reply
antoniotiman
Master III
Master III

Hi Aniket,

like this

SECTION Access;
LOAD * Inline [
ACCESS,USERID,PASSWORD,FIELD
ADMIN,ADMIN,admin,
USER,a,user1,1
USER,a,user1,2
USER,b,user2,3
USER,b,user2,5
USER,b,user2,8
USER,c,user3,*
]
;
SECTION Application;
  LOAD * Inline [
FIELD,Value
1,1
2,A
3,B
4,4
5,5
6,6
7,7
8,8
9,9]
;

Regards,

Antonio