Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Accumulative columns

I have 2 tables, 1 for daily transactions and 1 for opening balances. I require a field that accumulates the opening balance to the daily totals. In this way i will get the daily balance of the account.

eg if the opening balance is 1000

eff_datedaily totalaccumulative total
1/09/20111001100
2/09/20113001400
3/09/20112001600
1 Solution

Accepted Solutions
swuehl
MVP
MVP

You could probably make use of a chart inter record function, try e.g.

= opening_balance + rangesum(above(daily_total,0,rowno()))

Regards,

Stefan

View solution in original post

1 Reply
swuehl
MVP
MVP

You could probably make use of a chart inter record function, try e.g.

= opening_balance + rangesum(above(daily_total,0,rowno()))

Regards,

Stefan