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: 
NavinReddy
Creator II
Creator II

Null

Hi All,

Some one help me how to avoid null values in qlikview and

What is the use of Suppress Zero Values?

Where Can we using Suppress Zero Values ?

Some one help me This Scenario

Thanks In Advance

Niranjan

1 Solution

Accepted Solutions
Not applicable

You can remove null values when you do the load by using a where statement (ex. where len(fields >0); ).

The suppress zeros are useful when you don't like to show zeros in your chart for some reason. Activate it will make the chart ignore null and zero values.

View solution in original post

6 Replies
Not applicable

You can remove null values when you do the load by using a where statement (ex. where len(fields >0); ).

The suppress zeros are useful when you don't like to show zeros in your chart for some reason. Activate it will make the chart ignore null and zero values.

NavinReddy
Creator II
Creator II
Author

Hi   Hampus ,

Thanks for giving valuable information

Regards,

Niranjan

Not applicable

Suppress Zero values if not enabled, Then the chart will show the zeros values in the data. If you ont want to display the zero values in your table/chart then just Enable Suppress zero values and all the zero values values in your table will not be displayed

NavinReddy
Creator II
Creator II
Author

Script side how to write expression to avoid Null values

bbi_mba_76
Partner - Specialist
Partner - Specialist

Hi,

as @Hampus Andersson said, like this:

load Field1, Field2 resident Table

where len(Field1)>0;

NavinReddy
Creator II
Creator II
Author

Hi BBI,

now i am under stand how to use that

Thanks

Niranjan