Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Suppress Null


Hi All,

I have data with a include classname and ID mean String and Number.

I seperated Both string and ID.

Right(String, len(String)-index(String,'-',4)) As Employee_Type

I created a Bar chart,

Dimension : Employee_Type

Expresion : Count(ID)

But in Employee_Type having some NULL value.

I have written If(len(Employee_Type)=0,'NULL',Employee_Type)

it is showing NULL in my char.

But Now i don't want the NULLs in my chat i want to suppress.

i enabled CharProperties--->Presentation------> Suppress Zero Value

But still it is showing NULL in my chart is there any way to suppress NULL when we load into Qlikview.

Please let me know.

Thanks

12 Replies
sujeetsingh
Master III
Master III

use this as calculated dimension

If(len(Employee_Type)=0,null(),Employee_Type) as Calculated dimension

and then suppress null

buzzy996
Master II
Master II

are u tried tis?

Dimension tab-->Suppress When Value is Null

ramoncova06
Partner - Specialist III
Partner - Specialist III

If(len(trim(Employee_Type))=0,'NULL',Employee_Type)