Forum Discussion
AshokkumarM
8 years agoFrequent Visitor
Calculate year level measure
Hi, My requirement is get to full year total of selected month or each month like below report, Could anyone help in achieving this. Thanks, Ashok Kumar M
- 8 years ago
You may need a calendar table and measures as below.
currentYearSales = CALCULATE(SUM(yourTable[sales]),ALLEXCEPT('calendar','calendar'[Date].[Year])) lastYearSales = CALCULATE(SUM(yourTable[sales]),FILTER(ALL('calendar'),'calendar'[Date].[Year]=MAX('calendar'[Date].[Year])-1))See more details in the attached pbix file.
Eric_Zhang
Microsoft Employee
8 years agoYou may need a calendar table and measures as below.
currentYearSales = CALCULATE(SUM(yourTable[sales]),ALLEXCEPT('calendar','calendar'[Date].[Year]))
lastYearSales = CALCULATE(SUM(yourTable[sales]),FILTER(ALL('calendar'),'calendar'[Date].[Year]=MAX('calendar'[Date].[Year])-1))
See more details in the attached pbix file.