Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I need help,
How can I add values to the total field as shown below.
Product | Value | Total |
---|---|---|
A | 100 | 100 |
B | 250 | 350 |
C | 50 | 400 |
D | 50 | 450 |
In my source I have only Product and value fields . How can I calculate Total Field.
you can use like this :
above(sum(value),0,rowno()-1)
Thanks
Use this
aggr( rangesum(above( sum(Price), 0, rowno() )), Price)
May be this for Total measure -
Rangesum(Above(Sum(Value),0,Rowno()))
Hi,
maybe helpful:
regards
Marco
like this
RangeSum(above(sum(Price),0,RowNo()))