Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
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