Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi all,
I have a problem with values in matrix. Is it possible for the "udziały" columns to show only in Total and not next to each month?
Kind regards
Solved! Go to Solution.
Hi @Kubakkk ,
You can create a measure as below to replace the field udziały on the matrix, please find the details in the attachment.
New_Udzialy =
VAR _udzialy =
CALCULATE ( SUM ( 'Table'[Udzialy] ) )
RETURN
IF (
HASONEVALUE ( 'Table'[Data wystawienia].[Year] )
&& HASONEVALUE ( 'Table'[Data wystawienia].[Month] ),
BLANK (),
_udzialy
)
Best Regards
Hi @Kubakkk ,
You can create a measure as below to replace the field udziały on the matrix, please find the details in the attachment.
New_Udzialy =
VAR _udzialy =
CALCULATE ( SUM ( 'Table'[Udzialy] ) )
RETURN
IF (
HASONEVALUE ( 'Table'[Data wystawienia].[Year] )
&& HASONEVALUE ( 'Table'[Data wystawienia].[Month] ),
BLANK (),
_udzialy
)
Best Regards
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 54 | |
| 40 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 95 | |
| 83 | |
| 35 | |
| 30 | |
| 25 |