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: 
nikhilgarg
Specialist II
Specialist II

Prob in Rangesum !!

HEy,

In following Range function , if we use any numeric value like in first case then will it olways give sum??

And also in second case if we use character with numeric , will it olways give number ??

rangesum (1,2,4)returns 7
rangesum (1,'xyz')returns 1
1 Solution

Accepted Solutions
saumyashah90
Specialist
Specialist

When you use RangeSum()

It treats all Non Numeric values as 0.

So rangesum(1,'xyz') = rangesum(1,0) both will return 1

View solution in original post

3 Replies
anbu1984
Master III
Master III

rangesum (1,'1xyz') returns 1

saumyashah90
Specialist
Specialist

When you use RangeSum()

It treats all Non Numeric values as 0.

So rangesum(1,'xyz') = rangesum(1,0) both will return 1

nikhilgarg
Specialist II
Specialist II
Author

HEy,

Thanks