Hi there
I need to calculate a rolling total, if the table is:
col1 col2
1 10
2 10
3 15
I need my output to be:
col1 col2 total
1 10 10
2 10 20
3 15 35
How do I calculate the final column as a rolling total of the 2nd column?
COMPUTE and ROLLUP is not working.
Please help urgently.
Thanks!
Brenchia