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

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
chriscools
Creator II
Creator II

how to hide specific values in a dimension?

Hello,

i have a table with 1 dimension and a few expressions.

the dimension has 5 different values, but i would only to show 3 of them.

do i make a calculated dimension for this? and how would i then exclude the 2 values i don't want?

thanx!

chris

1 Solution

Accepted Solutions
sivarajs
Specialist II
Specialist II

Create calculated dimension like

if( not wildmatch(Dimension,'*Val1*','*Val2*'),Dimension)

or

if(Dimension<>'Val1' or Dimension<>'Val2',Dimension)

View solution in original post

2 Replies
sivarajs
Specialist II
Specialist II

Create calculated dimension like

if( not wildmatch(Dimension,'*Val1*','*Val2*'),Dimension)

or

if(Dimension<>'Val1' or Dimension<>'Val2',Dimension)

chriscools
Creator II
Creator II
Author

Hello,

the first solution worked, but the second dit not .

(there the values for the dimension got a different sorting, but nothing else happened)

thanx!

chris