Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
here is what I have achieved with the above function
what I want instead is having the sum of all the values above not only the final value.
For example; for Qhour 8:300, I want to return the sum of 23011+8434+4992+742+165, not onlu 23011+8434
How to do so?
Thank you
RangeSum(Above(YourExpression),0,RowNo()))
or
RangeSum(TOTAL Above(YourExpression),0,RowNo()))
=rangesum(above(sum(YourField),0,rowno()))
Hi
Try like this
=Rangesum(Above(Sum(Sales),0, RowNo()))
RangeSum(Above(YourExpression),0,RowNo()))
or
RangeSum(TOTAL Above(YourExpression),0,RowNo()))
Yes, that went all good !
Thank you all