Hello MDX and SSAS people,
I was wondering how to create a time calculation measure that summarizes the selected period/month's total value for the entire year in this case Budget. So if I select 202004 from my time hierarchy it should be the total budget of year 2020 and if I select 201904 it should be the total budget of 2019.
In the picture below I have created [YTD Budget] with the following mdx code:
Aggregate(periodstodate([Time].[Year-Month-Day].[Year],[Time].[Year-Month-Day].currentmember),
[Measures].[Budget Amount])
Now I would like to create [Full year Budget] but have not found a solution yet (novice mdx user). Anyone that has a solution for this?
Best regards, Rubrix

