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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.