Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Supressing null values

Hi Experts,

I am trying to supress the values by using supress when values is option,but not succeed.

I have the data  in straight table like below.

The data is same for all the fields except last field.

Now I want to supress the row where Components values as blank.but unable to succeed by using supress when values is option.

Can any one provide any sugesstions how we can supress that values from table???

Order IDDateItemStatusComponents
112/10/2014AWait
112/10/2014AWaitX
112/10/2014AWaitY
112/10/2014AWaitZ
6 Replies
Anonymous
Not applicable
Author

did you define "suppress Zero-Values" in the tab presentation as well?

anbu1984
Master III
Master III

What are your expressions in this table?

Only when all your expressions are null and "Suppress zero values" is set, then row will be suppressed

anithashivalingappa
Partner - Contributor III
Partner - Contributor III

Hi Swati,

If components is dimension then you can use "suppress when values is Null".

You can also try in presentation tab "suppress Zero-values" & "Suppress Missing" option.

jonathandienst
Partner - Champion III
Partner - Champion III

Hi

It will only suppress the row if all expressions return values that are null or zero. So the expressions should look like this:

     =If(Len([Components]) <> 0 And [Components] <> 0, <original expression>)

Which ensures that all the value are null if the Components value is null or zero.

HTH

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
PrashantSangle

Hi,

Take Component as Dimension and check "Supress When Value is null"

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
tobias_klett
Partner - Creator II
Partner - Creator II

Hi,

I guess you field in not NULL but empty.

Therfore enter the following set statement to your expression:

{<Components=-{''}>}

Regards Tobias