Forum Discussion
JB17
1 year agoFrequent Visitor
Total Per Month
Hi, I need help with creating DAX for the following: Instead of showing the value for each status per date per month, I need to show the total status per month in the desired result. thank...
- Anonymous1 year ago
Hi, JB17
Based on your information, I create a sample table:
Then unpivot columns, like this:
Select Close & Apply. Create a table visual, put the date, status, and values in the table, and then date selection to leave the month. Here is my preview:
How to Get Your Question Answered Quickly
Best Regards
Yongkang Hua
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
bhanu_gautam
1 year agoSuper User
JB17 , Try using
dax
Total Per Month =
CALCULATE(
SUM('YourTable'[Value]),
ALLEXCEPT('YourTable', 'YourTable'[Status], 'YourTable'[Date].[Month])
)