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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
lawrance
Creator II
Creator II

Count column value using If condition

Hi all,

Please help me to solve this in QlikView.

I want to count the column but the column value should not be null or zero using QlikView Script.

For Example,

DateABCDTotal
10/11/1711013
10/12/1711114
10/13/1701113
10/14/1711114
10/15/1700011
10/16/1711114

Thanks,

Lawrance A

3 Replies
sunny_talwar

May be this

RangeSum(A, B, C, D) as Total

Anonymous
Not applicable

first handle all the null value in all the columns  if(len(A)=0,0,A)

then use A+B+C+D as Total

sunny_talwar

But why not handle them both at the same time using RangeSum?