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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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.

Labels (1)
1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

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
Partner - Champion III
Partner - Champion III

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