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

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

1 Solution

Accepted Solutions
MayilVahanan

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

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.