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.