Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

condition dimnesion

hi,

i have pivot with dimension name "kodbreak",

i don't want to show kodbreak num - 1052,1058,1111.

i wrote at enabeld conditinal - kodbraek<> 1052,1058,1111

but nothing heppend.

what i did wrong ?

thanks'

yarin.

1 Solution

Accepted Solutions
Gysbert_Wassenaar

The conditional expression is for showing or hiding the entire dimension, not hiding some values but still showing the column. If you want to hide some values you have to use a calculated dimension:

if(match(kodbreak,1052,1058,1111), null(), kodbreak)

You'll also want to enable the Suppress When Values Is Null option of the calculated dimension.


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
priyav24
Creator II
Creator II

Hi,

Try this,

=if(kodbreak<> 1052,1058,1111,

kodbreak)

in the calculated dimension

Gysbert_Wassenaar

The conditional expression is for showing or hiding the entire dimension, not hiding some values but still showing the column. If you want to hide some values you have to use a calculated dimension:

if(match(kodbreak,1052,1058,1111), null(), kodbreak)

You'll also want to enable the Suppress When Values Is Null option of the calculated dimension.


talk is cheap, supply exceeds demand