This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Apologies if this lives somewhere, first time post!
I have a matrix visual that shows me customers & pallets delivered per Month/
I want to add the Value of the delivery to the Matrix.
However, I only want to see this as a total on the end of the Matrix, not broken down by month.
Can anyone help?
Hi @Jaymez_90
Thank you very much Sahir_Maharaj for your prompt reply.
According to the default design of Power Bi Desktop, you may not be able to achieve the expected effect by writing Measure. I can provide some alternative methods, maybe it is helpful to you:
First, create a measure to calculate the total.
TotalDeliveryValue = SUM('Table'[DeliveryValue])
Drag the newly created measure TotalDeliveryValue to the Values section of the matrix.
Search for the "Text Wrap" properties of the Matrix visual, and then we can turn off "Text Wrap" for both the "Values" and "Column headers".
Then you can drag the column which you do not want to display it to hide.
Solved: Matrix - Hide a column in visual but consider in c... - Microsoft Fabric Community
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Sorry, should add, I just want to see the value at the end 🙂
Many thanks for the response!
Unfortunatley, this approach still breaks each total down by month
I amended your DAX to match the correct tables:
Hello @Jaymez_90,
Welcome to the community 🙂
Can you please try this approach:
1. Create DAX measure that calculates the total value of delivery
TotalDeliveryValue = SUM(Deliveries[DeliveryValue])
2. Modify the Measure to Show Only in Totals
ShowInTotalOnly =
IF(
NOT ISINSCOPE(Dates[Month]),
[TotalDeliveryValue], -- Show value only if it's not in the scope of the month
BLANK() -- Otherwise, show nothing
)
Here's a few resources worthwhile exploring:
Hope this helps.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 29 | |
| 29 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 39 | |
| 33 | |
| 24 | |
| 23 |