Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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 but it seems to be doing something else.
Fairly new to Power BI so am struggling to find a solution.
The values are populated using a measure that is converting text from another table to a number.
Measure 3 = If ('acc ServiceDeskReporting'[Breach_Month]="Y", 1 )
Any assistance would be appreciated 🙂
Solved! Go to Solution.
Thanks @Anonymous, I'll give that a try.
I managed to solve it with
Measure 4 = SUMX(
VALUES('Table'[Date]),CALCULATE([Measure 3]
))
Cheers
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.
Thanks @Anonymous, I'll give that a try.
I managed to solve it with
Measure 4 = SUMX(
VALUES('Table'[Date]),CALCULATE([Measure 3]
))
Cheers