Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Chart with Date Columns

I'm trying to build a chart with our chart of accounts as the dimension, using the current months total $(Total) as the measurement, which gives me the total from the selected date. I then want to add 11 columns that will return the total amounts from the prior 11 months, so that I always have a running 12 month total for each account listed. Chart.png

2 Replies
rubenmarin

Hi Dave,

In some scenarios it can be precalculated on script but usually you need a solution like The As-Of Table

Here you have another document of the same subject with some table examples: Calculating rolling n-period totals, averages or other aggregations

vinieme12
Champion III
Champion III

create a YearMonth field in your data table to simplify the calculations

example: 201601,201602 and so on

and vStartYearMonth = Date(Addmonths( Date(Max(YearMonth),'YYYYMM'),-11),'YYYYMM')

You expression should then be

SUM ( {< YearMonth = {">=$(vStartYearMonth))"} >} Sales)

Just ensure your Month variables are '00'  format meaning Jan is '01' and not '1'

Period Presets: Compare Periods on the fly

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.