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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
dseelam
Creator II
Creator II

How to suppress zero or Null

Hello Qlik folks,

How to suppress below first record where On hand = 0, expression = sum(OnHand) this is a stright table, cant remove cost and say where item = null

Remote Desktop Connection.png

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

You need to create a calculated dimension like

= Aggr(If(Sum(Onhand)>0, ItemNumber), Itemnumber)

Then use supress 0 values and supress when value is null

View solution in original post

4 Replies
neelamsaroha157
Specialist II
Specialist II

If 'suppress null' is not working then may be you can include this condition in your expressions. Share a sample to look into more details.

PabloTrevisan
Partner - Creator II
Partner - Creator II

Hi Dinesh, You could try check this option on 'Hand' field... Note that in my example the field name is Sales.

SUPRESS WHEN VALUE IS NULL

Screenshot_1.jpg

I hope it help's

vishsaggi
Champion III
Champion III

You need to create a calculated dimension like

= Aggr(If(Sum(Onhand)>0, ItemNumber), Itemnumber)

Then use supress 0 values and supress when value is null

dseelam
Creator II
Creator II
Author

Thanks Vishwa