Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Phan_Anh_Son
Partner - Contributor III
Partner - Contributor III

Hide zero lines in straight table

Hi expert

I have a table with null data in a column , so I need a pivot table without this null values

Input table

Phan_Anh_Son_0-1721698364329.png

output table

Phan_Anh_Son_1-1721698474207.png

I`m working in qlilkview 11 so I put in chart properties the selection of Suppress zero-value but still appear the null value . Is there any formula in the Dimensions to hide this null values .

Thanks in advance

Labels (1)
2 Replies
marksouzacosta

Hi @Phan_Anh_Son,

What is making your chart to show these zero values is the Avg Budget per Employee measure. Since it is not zero, it governs the whole row. What you can do is to make this measure conditioned to the Actual Measure with Set Analysis.

So, replace the Avg Budget per Employee Measure with something like this:

Sum({<Employee = {"=Sum([Actual])>0"}>} [AVG_BUDGET])

The Set Expression in the case above will return the collection of Employees with Sum of Actuals greater than zero.

Read more at Data Voyagers - datavoyagers.net
anat
Master
Master

If (sum(actual) >0, sum(actual))