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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Need help with expressions

Hi I am trying to create a qliksense sheet and it got a filter pane which takes value from one of the column in a dimension table.

I am trying to write an expression which only shows certain values in the filter pane from that column

For example

Column

A

B

C

D

In the filter pane I only wanted to show A and B

Which expression will be helpful to achieve this.

Thanks

2 Replies
ahaahaaha
Partner - Master
Partner - Master

Hi,

May be as in attached file

Andrey

devarasu07
Master II
Master II

Hi,

Yeah you can try with Andrey suggestion

Calculated dimension:

"=if(Column='A' or Column='B',Column) "

Also you can you do it below way.

=pick(Match(Column,'A','B'),'A','B')

Thanks, Deva