Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Multiple OSUser() expression

Hi everyone,

I am attempting to hide a tab by using OSUser()  but also where a specfici scorecard is selected. This is what I thought was working but the tab is visible for all scorecards (1-17).

 

vScorecard = 17
AND
OSUser()
=(domain\philip.king', domain\thomas.tank'

)

I've tried putting the vScorecard = 17 at the end of the expression but it then hid it from the users. Could someone help me on where I am going wrong please?

Many thanks

1 Reply
Miguel_Angel_Baeyens

Hi Phil,

Use the Match() function in the conditional:

vScoreCard = 17 AND MixMatch(OSUser(), 'domain\philip.king', domain\thomas.tank')

Hope that helps.

Miguel