Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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 |
When you use RangeSum()
It treats all Non Numeric values as 0.
So rangesum(1,'xyz') = rangesum(1,0) both will return 1
rangesum (1,'1xyz') returns 1
When you use RangeSum()
It treats all Non Numeric values as 0.
So rangesum(1,'xyz') = rangesum(1,0) both will return 1
HEy,
Thanks