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

table problem

HI,

i have this table -

Capture.PNG.png

I want that the Lines marked (have null in the 3 expression) will not shown.

how can i do that?

thank you'

adi.

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Unfortunately when a row contains at least a value you have always that row.

To override the problem you can do (I'll explain with an example)

column1 (expression 1) you have 0

column2 (expression 2 you have 10 (but you need the whole row to disappear):

Set in presentation tab "suppress zero value"

in the expression with the value (for example Sum(myField)) write

If (column(1) = 0, 0, sum(myField))

in this way when other fields are equal to 0 all the row will be 0 and will disappear

Hope it helps

srchilukoori
Specialist
Specialist

use a conditional expression to make the nulls 0, if the first column is 0.