Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

OSUser and how to use it on conditional display

Hello everyone,

I use the NTNAME in a section access to limit the rights in my application.

According who is on the application, I would like to enable some charts or not (with conditional display).

If I write OSUser() = 'DOMAIN\myname' it works,   but I would like to use something like :

OSUser() LIKE %myname%  but it doesn't work and I cannot find the proper syntax.

Any ideas ?

Thanks

1 Solution

Accepted Solutions
martynlloyd
Partner - Creator III
Partner - Creator III

QlikView uses the wild card *

Try LIKE '*Myname*'

Marty.

View solution in original post

2 Replies
martynlloyd
Partner - Creator III
Partner - Creator III

QlikView uses the wild card *

Try LIKE '*Myname*'

Marty.

Not applicable
Author

Great ! Thanks a lot !