Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
vinay_qlik
Contributor
Contributor

Replacing Nulls with Zeros (0)

Hi All,

I have the following scenario. Please refer the attached snapshot.

I need to replace the Yellow color cells to ZERO (0).

 

I need you guys help hand in achieving this in "QlikSense".

 

Thanks in advance

Null to Zero Scenario.JPG

 

 

 

 

 

 

Labels (2)
1 Reply
lblumenfeld
Partner Ambassador
Partner Ambassador

It's a little difficult to determine exactly where you're trying to use this. Is it in a pivot table or standard table? If so then I assume you've got something like

Sum(Value) as the measure and you're saying if that's null then make it zero?

If that's what your'e trying to do then try this.

If(IsNull(Sum(Value)), 0, Sum(Value))

If that's not what you're trying to do then please post an example.

I hope this helps.