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.
Anonymous
4 years agoNot applicable
HI
Calculate(sum(value),allexcept(Table[EndofMonth]))
- Murali7774 years agoHelper III
Hi James,
I have tried, but it is not working. if you dont mind pls share the PBIX file.
Thanks.