Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all,
I created matrix report. In default, the total column on right side. But i want move it to left side.
How can i do it ?
Hi @long_super ,
According to your description, I create this data:
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
var _total=
SUMMARIZE('Table','Table'[Name],
"Date"," Total",
"Value",SUM('Table'[Value]))
var _union=
UNION('Table',_total)
return
_unionResult:
2. As we can see, I added three rows at the end of my original data table, and give them “ Total” as the Date value. The blank character before the “Total” can make it become the first column in the Matrix because the columns in the Matrix of Power BI are sorted by the first character ascending.
3. Result.
You can downloaded PBIX file from here.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@long_super , you have an option to move the row subtotal at top. I doubt you have one for column.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.