Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
francisvandergr
Partner - Creator II
Partner - Creator II

Conditional show on a sheet

USERID='SEGERS' or
USERID='ADMIN'

I have used this conditional show on my sheet. It works for SEGERS but not for Admin. When i do ADMIN first and then SEGERS, it works good for ADMIN. How is my formula for more users ?

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hello Francis,

Try the following:

MATCH(USERID, 'SEGERS', 'ADMIN')


That will return greater than zero if there is a match, otherwise zero.

Hope that helps.

View solution in original post

3 Replies
pat_agen
Specialist
Specialist

hi,

try

if(match(USERID,'SEGERS','ADMIN')>0,1,0)

that should work and the afterwrads youjust add other userids.

Miguel_Angel_Baeyens

Hello Francis,

Try the following:

MATCH(USERID, 'SEGERS', 'ADMIN')


That will return greater than zero if there is a match, otherwise zero.

Hope that helps.

francisvandergr
Partner - Creator II
Partner - Creator II
Author

Thnx it works !