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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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.

Labels (1)
1 Solution

Accepted Solutions
jagan
Partner - Champion III
Partner - Champion III

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
MVP
MVP

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

Hi,

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

Regards,

Jagan.

jagan
Partner - Champion III
Partner - Champion III

Note: 0 <> 0.0000345  or any other number.

Regards,

Jagan.

jagan
Partner - Champion III
Partner - Champion III

Try this expressions

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

OR

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


Regards,

jagan.