Hello!
I'm new to my organization and new to Analytics. I am trying to graph Year-Over-Year cumulative contributions with a window of September-August (our fiscal year, so not by calendar year). I've spent hours noodling and can't figure it out! Any ideas would be welcome.
In this graph I was able to see all FY cumulative contributions side-by-side but not stacked:
In this graph I can achieve a stacked line graph, but the months are in alphabetical order.
Then I can get a bar chart that has correct months but must not be showing cumulative contributions, otherwise the colors would all be trending upwards towards the close of our fiscal year
Hi Natalie,For the month sort try adding Calendar Month Sort over the Month to organise
However this might be worth a look (it's something I whipped up for another org)
Let me know if you want the .dash file to look at
Hi Natalie,
Adding on to Heath, I recommend either the Column chart you have, but with an updated value to give you that running sum.
Or from your first attempt where the FY cumuliatives were broken by fiscal year, but not stacked:
RSUM( PASTYEAR( [Total Amount] ) )
RSUM( ( [Total Amount] , PREV( [Months in Date] , 24 ) ) )
For consistency with this approach, when you know you're going to be doing more than one FY, the PASTYEAR function for 2020 can be replace with PREV and 12 months.
I'm attaching my dashboard from the screenshot above for your reference (Importing a Dashboard).
RunningSumYoFY.dash
You can change the display of the display of the Months from showing the Year to only showing the month name using this "Format Date" icon:
Best,Chris