Menu location: Data_Transformations_Cumulative.
This function takes a set of data and returns the cumulative set in an equal column marked with the label Cumulate:<name> where <name> is the column label of the original data. Cumulative data need to have some meaning to the order in which they are derived.
Example:
|
Data A, become ---> |
Cumulate:Data A |
|
1 |
1 |
|
3 |
4 |
|
5 |
9 |
|
4 |
13 |
|
7 |
20 |
|
9 |
29 |