Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Finding cumulative value in a straight table

Dear Friends,

I need a help in finding cumulative value in a straight table for the attached QVW file.

I wanted to find the cumulative values based on ID levels.

1.png


Result should be like the below:  (Based on the ID the cumulative values will be)(this sample is from Excel)


3.png



Regards,


Pooja.

1 Solution

Accepted Solutions
qliksus
Specialist II
Specialist II

I guess your question has been answered in the some other thread . You can use the below

RangeSum( Above(total Sum(AMOUNT),0,RowNo(total )) )

View solution in original post

4 Replies
trdandamudi
Master II
Master II

Give a try on the below expression for Cumulative:

RangeSum( Above(Sum(AMOUNT),0,RowNo()) )

Not applicable
Author

Hi Thiru,

Thanks for the response. For this example the given script is working fine but when i add the date column, it's not giving me the correct answer. PFA updated QVW file with the updated data.

Please help me if you can.

Cum.jpg

Thanks,

Pooja

Anonymous
Not applicable
Author

try to create a field like this

Autonumber(ID&'-'&DATE&'-'&NAME&'-'&AMOUNT,ID) as Key

then use this in your expression :

Rangesum(above(total sum(AMOUNT),0,Key))

qliksus
Specialist II
Specialist II

I guess your question has been answered in the some other thread . You can use the below

RangeSum( Above(total Sum(AMOUNT),0,RowNo(total )) )