Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe'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
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 57 | |
| 40 | |
| 36 | |
| 18 | |
| 18 |
| User | Count |
|---|---|
| 70 | |
| 67 | |
| 38 | |
| 34 | |
| 23 |