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: 
Not applicable

Hide OMITed fields

Hi, is there a way to hide fields that certain users are not allowed (OMIT in Section Access) to see?

As it is now I have:

Section Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD, OMIT

    ADMIN, ADMIN, ADMIN,

    USER, SCM, SCM, test

    USER, PM1, PM1, test

];

Section Application;

where 'test' is the field I want to hide for users SCM and PM1.

Now the users can see the field which is (unavailable). Can I simply hide unavailable fields?

Any other tips & tricks regarding design of reports with limited access rights?

Thanks.

/Mikael

1 Solution

Accepted Solutions
jvitantonio
Specialist III
Specialist III

Hi,

You can use the function QVUser() and then play with the conditional show. for instance, if the object you want to hide is a list box, go to the list box properties -->LAyout --> Show on Conditional and put:

=If(QVUser() = 'SCM' or QVUser() = 'PM1', 0,1)

I hope this helps.

View solution in original post

1 Reply
jvitantonio
Specialist III
Specialist III

Hi,

You can use the function QVUser() and then play with the conditional show. for instance, if the object you want to hide is a list box, go to the list box properties -->LAyout --> Show on Conditional and put:

=If(QVUser() = 'SCM' or QVUser() = 'PM1', 0,1)

I hope this helps.