Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to subtract missing values

Hi

In a staright table I am trying to subtract ' a missing value like

'-' - 800 its showing as zero instead of -800.

I want to subtract the missing values consedering them as zeros in a straight table.

Thanks

2 Replies
ashfaq_haseeb
Champion III
Champion III

Hi,

You need to replace null value with zero.

have a look at attached document.

Regards

ASHFAQ

MK_QSL
MVP
MVP

=IF(Len(Trim(Replace(YourFieldName,'-','')))=0 or ISNULL(YourFieldName),0)-800