Forum Discussion
How to sum value for fixed years
- 4 years ago
Hi RexaZii93 ,
You need create an independent calendar table first which has no relationship with the fact table. The same as the following screenshot.
Then create a measure like this:
Measure = CALCULATE ( SUM ( 'Fact table'[Values] ), FILTER ( VALUES ( 'CALENDAR'[Date] ), MONTH ( [Date] ) IN VALUES ( 'New calendar'[Month] ) && DAY ( [Date] ) IN VALUES ( 'New calendar'[Day] ) ) )Result:
Pbix in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Please follow similar case in this post
Hello Tamer
The post only shows how to calculate the values in the past three years (-3) so if I want a certain year lets say 2019 I would have to change -3 to -4 every year.
what I would like is to calculate values on fixed year lets say 2019. Moreover, it only calculate the months I Pick on my callendar date, so if I chose Jan to July for 2022 it automatically do the same for 2019.