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