Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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

1 Solution

Accepted Solutions
sunny_talwar

Use WildMatch:

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


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

View solution in original post

1 Reply
sunny_talwar

Use WildMatch:

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


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