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

how to make a button visible to only 5 people out of 10

=if(OSUser() like,1,0)

i am using this but

for example i am having  A B C D E F users

i need only B C D to view a specific button how to set it uppppppppp

1 Solution

Accepted Solutions
Not applicable
Author

Hey,

You could create a variable which indicates if the button should be shown or not.

For example vShow

=if(OSuser()='B'or OSUser()='C' or OSUser()='D',1,0)

The button is then shown conditionally shown base on the value of vShow.

Hope this helps.

Frank

View solution in original post

4 Replies
Not applicable
Author

Hey,

You could create a variable which indicates if the button should be shown or not.

For example vShow

=if(OSuser()='B'or OSUser()='C' or OSUser()='D',1,0)

The button is then shown conditionally shown base on the value of vShow.

Hope this helps.

Frank

Not applicable
Author

does this apply same for the tab also if i wanted to make a specific tab visible to only some users

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

     Have a look at the below links for more help.

     http://community.qlik.com/message/135346#135346

     http://community.qlik.com/message/311475#311475

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Not applicable
Author

You could do this for every object which allows conditional show, so yes this also includes sheets/tabs.

gr.

Frank