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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi All,
Need to create Matrix table like below,Please suggest
Thanks in Advance
Hello @sanjaymithran,
We hope you're doing well. Could you please confirm whether your issue has been resolved or if you're still facing challenges? Your update will be valuable to the community and may assist others with similar concerns.
Thank you.
Hi,
Share some data to work with and show the expected result. Share data in a format that can be pasted in an MS Excel file.
Hello @sanjaymithran,
Hope everything’s going great with you. Just checking in has the issue been resolved or are you still running into problems? Sharing an update can really help others facing the same thing.
Thank you.
Hi @sanjaymithran,
Thank you for posting your query in the Microsoft Fabric Community Forum, and thanks to @MasonMA & @amitchandak for sharing valuable insights.
Could you please confirm if your query has been resolved by the provided solutions? This would be helpful for other members who may encounter similar issues.
Thank you for being part of the Microsoft Fabric Community.
Hi, one of the ways would be first transform your data in Power Query by Unpivoting columns other than 'Region', 'Country' and 'Date' from
to,
Then in reporting, aggregate your Value with a SUM function, and use below sample DAX to Format them
Format=
VAR IsMargin = SELECTEDVALUE('Table'[Attribute]) = "Margin"
RETURN
IF (
ISBLANK([ValueSum]),
BLANK(),
IF(
IsMargin,
FORMAT([ValueSum], "0.0%"), -- Percent for Margin
FORMAT([ValueSum], "$#,##0") -- Currency for Sales/Profit
))
For the visual, use "Attribute" and Month Name for Columns, remove the name of "Attribute" from Column afterwards)
Hi,
Thanks for the reply ,we can't use unpivot options because we have used other columns in report and Region ,country also used in diffrent report
Tried Calculation Groups but not able to filters zeros and blanks
Well, if you have to create this type of visual you can always duplicate it in Power Query and make a table just for the use of this Matrix.
@sanjaymithran , You can do that using calculation groups
Calculation Groups- Measure Slicer, Measure Header Grouping, Measure to dimension conversion. Complex Table display : https://youtu.be/qMNv67P8Go0