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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Display only a few Dimension members

Hello

I have a Dimension and I would like to display only a few member for selection.

I am trying something like:

=if(Dimension = {'Yes','No'},Dimension)

But seems not to work

Any suggestions??

thanks

Labels (1)
1 Solution

Accepted Solutions
MayilVahanan
MVP
MVP

HI

Try like this

=if(match(Dimension,'Yes','No'),Dimension)

or

if(Dimension = 'Yes' or Dimension='No', Dimension)

Hope that helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

1 Reply
MayilVahanan
MVP
MVP

HI

Try like this

=if(match(Dimension,'Yes','No'),Dimension)

or

if(Dimension = 'Yes' or Dimension='No', Dimension)

Hope that helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.