Forum Discussion
Murali777
Helper III
4 years agoMonthwise 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.
Murali777
Helper III
4 years agoHi Esha,
Is any input on the below scenario please?
Murali777
Helper III
4 years agoBelow is the code for the output Esha.. We need to filter based on the User right. it works fine.
Thank you for your help as well.
MonthlyTotal1 = CALCULATE(SUM(EmployeeTable[Value]),ALLSELECTED(EmployeeTable[User]))