Forum Discussion
SMD75
3 years agoFrequent Visitor
Help with Totals
Hi, this will probably be an easy solution for someone. I'm having issues with the built-in matrix column totals not totalling. I want the row totals to SUM the numbers in the matrix bu...
- 3 years ago
Thanks Anonymous, I'll give that a try.
I managed to solve it with
Measure 4 = SUMX( VALUES('Table'[Date]),CALCULATE([Measure 3] ))Cheers
Anonymous
3 years agoNot applicable
Hi SMD75 ,
Please have a try.
Create a measure based on the above.
measure_4=var _b=SUMMARIZE('table','table'[date],"aaa",'table'[measure 3])
return
IF(HASONEVALUE('table'[date]),[measure 3],SUMX(_b,[aaa]))
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- SMD753 years agoFrequent Visitor
Thanks Anonymous, I'll give that a try.
I managed to solve it with
Measure 4 = SUMX( VALUES('Table'[Date]),CALCULATE([Measure 3] ))Cheers