Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Cumulative Sum - QlikView for QuickBooks

I'm using a version of QlikView that is an add-on to QuickBooks called Advanced Reporting, so I do not have control over the Import of the data. That being said, is there a way to properly create an Expression that cumulatively sums the values from another column.

    

Txn TypeTxn DateContract TermRef NumberAmountAnnual AmountRunning Total
Sales Order03/22/2017126953$20,169.60$20,169.60$20,169.60
Sales Order05/17/201717007$499,856.50$499,856.50$499,856.50
Sales Order05/17/2017247001$2,790,931.00$1,395,465.50$1,895,322.00

    

The Running Total column is supposed to cumulatively total the Annual Amount column, but doesn't work in the 2nd row. The Annual Amount column is derived from the Amount. This is the formula that I'm using to calculate the Running Total column: rangesum(above([Annual Amount],0,rowno(total)))

This is a Straight Table. Is my formula incorrect or is this not possible with a Straight Table? It needs to be sorted on Txn Date.

Thank you

1 Solution

Accepted Solutions
sunny_talwar

Try this

RangeSum(Above(TOTAL [Annual Amount], 0, RowNo(TOTAL)))

View solution in original post

3 Replies
sunny_talwar

Try this

RangeSum(Above(TOTAL [Annual Amount], 0, RowNo(TOTAL)))

sunny_talwar

And if this is a straight table, you can just use Full Accumulation on the Expressions tab with this as your expression

[Annual Amount]

Capture.PNG

Not applicable
Author

Thanks, Sunny...your first solution worked although the second didn't seem to.