Gokul Balaji Posted January 28, 2020 Posted January 28, 2020 i have a column called A. cumulative sum of this column is needed. please help me with this issue.
Tyger Guzman 2 Posted January 28, 2020 Posted January 28, 2020 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now