Jump to content

how do we calculate cumulative sum of rows and without date


Gokul Balaji

Recommended Posts

You can use several expression :

For CrossTables :

When Vertical Axis is being used:

Sum([Column]) THEN Sum([Value]) OVER (AllPrevious([Axis.Rows]))When Horizaontal Axis is being used :

Sum([Column]) THEN Sum([Value]) OVER (AllPrevious([Axis.Columns]))For Bar Charts and Line Graphs :

Sum([Column]) THEN Sum([Value]) OVER (AllPrevious([Axis.X]))

The expression was taken fromhttps://docs.tibco.com/pub/spotfire/7.0.1/doc/html/esc/esc_cumulative_sum.htm

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...