Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Paknanarn23
Creator II
Creator II

I want values ​​equal to 0 to disappear.

I don't want to give out information. in the red frame showing When the Minimum_line_width value is equal to 0

Paknanarn23_0-1697775353100.png

What should I do? please help me

1 Solution

Accepted Solutions
VatsalyaSolanki
Contributor III
Contributor III

Hey @Paknanarn23 ,

Insert this set expression {<Minimum_line_width-={'0'}>}  in the Measure where you are calculating the Sum.

Accept as answer, if the solution works for you.

View solution in original post

4 Replies
VatsalyaSolanki
Contributor III
Contributor III

Hey @Paknanarn23 ,

Insert this set expression {<Minimum_line_width-={'0'}>}  in the Measure where you are calculating the Sum.

Accept as answer, if the solution works for you.
Paknanarn23
Creator II
Creator II
Author

I can't do it I want dimensions Disappears when the value is 0

VatsalyaSolanki
Contributor III
Contributor III

 

Hey,

I am not sure if you can make the dimensions 'Disappear'  or Blank but you could set them to Null i.e '-'   based on a condition.

 for that you can create a calculated dimension and use the below expression.

=if(Minimum_line_width= '0',Null(),EquipmentNo).

 

1. Do this for each dimension, just replace 'EquipmentNo' with the respective Dimension name

 

Accept as answer, if the solution works for you.
Paknanarn23
Creator II
Creator II
Author

This is the code for Minimum_line_width

if(sum(Minimum_line_width) = aggr(NODISTINCT(Mode(Minimum_line_width)),KcePart1,Layer),0,Minimum_line_width)