Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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
amit_saini
Master III
Master III

Try This:

=if (not isnull(Employee_Type),Employee_Type)

Thanks,
AS

Not applicable
Author

Thanks Amit,

For your Help.

Sorry where should i try. in Chart i have taken Calculated dimension.

Please give some clarification

amit_saini
Master III
Master III

Hi,

You can use this as Dimension (Calculated expression) or also as expression based on your requirement.

Thanks,
AS

Not applicable
Author

Thanks Amit,

I tried but it is not working.


Anonymous
Not applicable
Author

write this if(len(Employee_Type)=0,null(),Employee_Type)


it will load null then suppress null


Thanks

BKC

MK_QSL
MVP
MVP

Change the Definition of Employee_Type in Script....


IF(IsNull(Right(String, len(String)-index(String,'-',4)))

OR

LEN(TRIM(Right(String, len(String)-index(String,'-',4))))=0, Null(), Right(String, len(String)-index(String,'-',4))) As Employee_Type

hariprasadqv
Creator III
Creator III

Hi,

Supressing null values with the chart properties my help you.

avinashelite

can you please share the app

simsondevadoss
Partner - Creator III
Partner - Creator III

Use suppress when value is null in dimension(chart properties) and uncheck show all values