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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
TomBond77
Specialist
Specialist

Dimension without value -> don't show

Hi experts

I have a dimension "material" and one measure. There are a few records without a value on dimension "material". I have chosen a treemap as chart. Unfortunately these records are shown too on that chart. I have the following expression on this dimension:  =If(not(IsNull([Material])), [Material], Null())

But it is not working. 

Do you have an idea how to deselect these records?

Many thanks

Tom

1 Solution

Accepted Solutions
NitinK7
Specialist
Specialist

try once

If( Len( [Material] )>1, [Material] )

View solution in original post

5 Replies
Jayavignesh
Contributor III
Contributor III

You have a checkbox to 'include null values' in dimension of the chart properties. Kindly uncheck the same.

TomBond77
Specialist
Specialist
Author

Thanks, already done. But this is not the cause. Any ideas?

TomBond77
Specialist
Specialist
Author

This a chart of type "treemap" and additionally a bottom 10 is set.

NitinK7
Specialist
Specialist

try once

If( Len( [Material] )>1, [Material] )

TomBond77
Specialist
Specialist
Author

Wonderful, many thanks!