Forum Discussion
Murali777
4 years agoHelper III
Monthwise total using DAX
Hi, Below is my request to figure out the MonthwiseTotal column using DAX measure. I have tried using TotalMTD function but it is working. Can any one pls help on this.
- Anonymous4 years ago
The table
the measure ==>
- Anonymous4 years ago
hi Murali777
You can use this measure
MonthwiseTotal = CALCULATE(SUM('Table'[Value]),ALLEXCEPT('Table','Table'[End Of Month]))If this post helps, accept it as a solution.
TomMartens
4 years agoSuper User
Hey Murali777
this article Time patterns – DAX Patterns contains almost everything you need to know to create time/date related calculations.
It's necessary that you create a dedicated calendar table and then create a measure that cumulates the values from all the data less and equal to the selected date.
Hopefully, this helps to tackle your challenge.
Regards,
Tom