Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Write Table now available in Qlik Cloud Analytics: Read Blog
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Pain in the *** Nulls

Is there an easier way, a global way possibly, to deal with Nulls so that I don't have to keep turning expression like this:

Column(3)-Column(1)+Column(2)

into expressions like this:

if(isnull(Column(3)),0,Column(3))-if(isnull(Column(1)),0,Column(1))+if(isnull(Column(2)),0,Column(2))

1 Solution

Accepted Solutions
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

RANGESUM(Column(1), Column(2), Column(3)) - that's exactly what it does.

Ask me about Qlik Sense Expert Class!

View solution in original post

2 Replies
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

RANGESUM(Column(1), Column(2), Column(3)) - that's exactly what it does.

Ask me about Qlik Sense Expert Class!
Anonymous
Not applicable
Author

Well, that's a little better. I still wish there were a global setting that could be set in the script.