Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewwizard
Master II
Master II

strange behaviour

Hi All,

I want not to show the empty and zero values from the chart.

I checked suppress zero values and suppress null values. But it is not working. Version is 11.0 SR2 64bit

Please help me.

1 Solution

Accepted Solutions
jagan
Luminary Alumni
Luminary Alumni

Try this expressions

if(Floor(sum(COMM)) <>0 , sum(COMM))

OR

if(Round(sum(COMM)) <>0 , sum(COMM))


Regards,

jagan.

View solution in original post

6 Replies
tamilarasu
Champion
Champion

Hi Arjun,

I could not see any null/blank values in your chart.

Capture.PNG

2.PNG

sunny_talwar

I don't see it either

Capture.PNG

Can you post a screenshot of what you are seeing?

qlikviewwizard
Master II
Master II
Author

Capture.PNG

jagan
Luminary Alumni
Luminary Alumni

Hi,

Check whether you have floating point numbers like 0.00054.  If you have like this Use Floor()/Ceil()/Round().

Regards,

Jagan.

jagan
Luminary Alumni
Luminary Alumni

Note: 0 <> 0.0000345  or any other number.

Regards,

Jagan.

jagan
Luminary Alumni
Luminary Alumni

Try this expressions

if(Floor(sum(COMM)) <>0 , sum(COMM))

OR

if(Round(sum(COMM)) <>0 , sum(COMM))


Regards,

jagan.