Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Jaymez_90
New Member

Matrix Visual Help

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?

4 REPLIES 4
Anonymous
Not applicable

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".

 

vnuocmsft_0-1732773936407.png

 

Then you can drag the column which you do not want to display it to hide.

 

vnuocmsft_1-1732774061551.png

 

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.

 

 

Jaymez_90
New Member

Sorry, should add, I just want to see the value at the end 🙂

Jaymez_90
New Member

Many thanks for the response!

 

Unfortunatley, this approach still breaks each total down by month 

 

I amended your DAX to match the correct tables:

ShowInTotalOnly =
IF(
    NOT ISINSCOPE('SummaryTable'[Month]),   -- Check if 'Month' is not in scope
    [TotalDeliveryValue],                   -- Show the 'TotalDeliveryValue' measure
    BLANK()                                 -- Return blank when 'Month' is in scope
)

 

 

Jaymez_90_0-1732640447399.png

 

Sahir_Maharaj
Super User
Super User

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.


Did I answer your question? Mark my post as a solution, this will help others!

If my response(s) assisted you in any way, don't forget to drop me a "Kudos" 🙂

Kind Regards,
Sahir Maharaj
Data Scientist | Data Engineer | Data Analyst | AI Engineer
P.S. Want me to build your Power BI solution? (Yes, its FREE!)
➤ Lets connect on LinkedIn: Join my network of 15K+ professionals
➤ Join my free newsletter: Data Driven: From 0 to 100
➤ Website: https://sahirmaharaj.com
➤ About: https://sahirmaharaj.com/about.html
➤ Email: sahir@sahirmaharaj.com
➤ Want me to build your Power BI solution? Lets chat about how I can assist!
➤ Join my Medium community of 30K readers! Sharing my knowledge about data science and artificial intelligence
➤ Explore my latest project (350K+ views): Wordlit.net
➤ 100+ FREE Power BI Themes: Download Now
LinkedIn Top Voice in Artificial Intelligence, Data Science and Machine Learning

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.