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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Chart Issue

Hi,

I have a bar chart with X axis containing Months and Y axis the sum(Sales).

I have to show the data for all months irrespective of whether the data is present there or not.

I have unchecked suppress zero values as well, but still only some months are showing up.

1 Solution

Accepted Solutions
Not applicable
Author

I found the solution for the same. We can do it in the chart expression as well.

e.g if(isnull(sum(Sales)),0,sum(Sales))

and under presenttaion Tab, uncheck Suppress 0 values

View solution in original post

2 Replies
anbu1984
Master III
Master III

If data is not present in table, then create rows in script.

Not applicable
Author

I found the solution for the same. We can do it in the chart expression as well.

e.g if(isnull(sum(Sales)),0,sum(Sales))

and under presenttaion Tab, uncheck Suppress 0 values