Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Remove NULLs from the report

There is straight table (detail report) and it has few derived columns through expression. Sometimes the expression output is NULL (expected).

We don't want those rows to be displayed in the report. How to suppress the NULL values in the report.

4 Replies
rustyfishbones
Master II
Master II

Hi,

you may need to change the expressions to only show values greater than 0

something like

IF(Sum(Sales) > 0,0,Sum(Sales))

Not applicable
Author

In that case it shows 0 or the sum.

Bill_Britt
Former Employee
Former Employee

Hi,

You can try checking "Suppress When Value is Null" on the Dimension Tab.

null.png

Suppress When Value Is NULL

If this check box is enabled, the selected dimension in the Used Dimensions above will not be displayed in the chart if its value is NULL.


Bill

Bill - Principal Technical Support Engineer at Qlik
To help users find verified answers, please don't forget to use the "Accept as Solution" button on any posts that helped you resolve your problem or question.
rustyfishbones
Master II
Master II

Sorry, you are correct

Sum(Sales) > 0