Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
hi, im having a trouble regarding this visual. is this possible to remove the columns in red circle highlights and keep only the total (last column) in the visual? i don't need the values of plate number per column and i just need the total but it was distributed per column. thank you!
Solved! Go to Solution.
Hi @whygeent ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
You can try using a new table instead so that you don't have duplicate MEASURES, because the columns of the matrix are sorted alphabetically by default, and if you want to be sorted to the back, you can prefix it with a letter that is later in the alphabet
Table 2 =
var _table1=
SUMMARIZE(
'Table','Table'[Group1],
"Group2","E_Count Plate Number",
"Amount",[Count Plate Number])
return
UNION(
'Table',_table1)
2. Result:
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
Hi @whygeent ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
You can try using a new table instead so that you don't have duplicate MEASURES, because the columns of the matrix are sorted alphabetically by default, and if you want to be sorted to the back, you can prefix it with a letter that is later in the alphabet
Table 2 =
var _table1=
SUMMARIZE(
'Table','Table'[Group1],
"Group2","E_Count Plate Number",
"Amount",[Count Plate Number])
return
UNION(
'Table',_table1)
2. Result:
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
Hi @whygeent ,
You can write a measure to show only the totals. Try either.
=
IF (
NOT ( HASONEVALUE ( data[row field] ) )
&& NOT ( HASONEVALUE ( data[column field] ) ),
[total]
)
=
IF (
( HASONEVALUE ( data[column field] ) )
|| NOT ( HASONEVALUE ( data[row field] ) ),
[total]
)
What this does is it checks if there is more than one distinct date values in a given filter context (eg how many dates are there in a given date which obviously is just one). If there's only one date then it returns blank otherwise the total. The same goes for the column. Alternatively, you can play around with the values formatting so the font color matches the row background's.
Check out the April 2026 Power BI update to learn about new features.
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.
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 67 | |
| 32 | |
| 27 | |
| 26 |