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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
alec1982
Specialist II
Specialist II

Hide tabs based on User ID

Hi guys,

I usually use the following to hide tabs based on user ID

Match(Upper(OSUser())

        ,'Sam@yahoo.COM'

        ,'Alec@hotmail.COM'            

        ) = 0

I want to hide the tab for any user who uses yahoo.com as email address.

any idea?

Thxs,

Alec

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Use WildMatch:

not WildMatch(Upper(OSUser()), '*yahoo.com')


not WildMatch(Upper(OSUser()), '*YAHOO.COM')

View solution in original post

1 Reply
sunny_talwar
MVP
MVP

Use WildMatch:

not WildMatch(Upper(OSUser()), '*yahoo.com')


not WildMatch(Upper(OSUser()), '*YAHOO.COM')