I would like to get Cumulative Sum from Jan - Dec for each year
Something similar to Below But replace First Month and Last Month with the current year data. I have data from 2014 -2017
Sum(
[Ship Date].[Date].CURRENT_MEMBER.FirstMonth
: [Ship Date].[Date].CURRENT_MEMBER.LastMonth,[Measures].[Revenue]
)
You may be able to use this structure which I’ve taken from the MSDN YTD page:
Here is another alternative: