You have a table (a pivot table) containing a sequence of years and some numeric values.
You need to calculate cumulative (running) totals when the value of each next year is added to the sum of the previous ones.
Enter the following SQL query:
SELECT 'Year', SUM (TT2.'Requests') AS 'Requests' FROM T1 AS TT1 JOIN T1 AS TT2 on TT1.'Year' >= TT2.'Year' GROUP BY TT1.'Year' ORDER BY TT1.'Year' |
As an alternative, since the 7.4.0 version of the app, you can enable the Cumulative count option in the Pivot Table macro. |
As an alternative you can enable the Cumulative count option in the Pivot Table macro. |
You can use FORMATWIKI function for the purposes of cell formatting. |
|