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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I have data in the below format.
I want the report in the below format.
Do we have any visuals which report in this format?
Thanks in advance!
Solved! Go to Solution.
Hi, @vinothkumar1990
The matrix view achieves the results you expect.
No additional calculations are required.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You canuse a simple matrix visual with two measures. First, set up dimension tables for Country and Sales Type using the follwoing pattern in new tables:
Country Table =
DISTINCT(fTable[Country])
Set up a period dimension table using the follwoing:
Period Table =
ADDCOLUMNS(
DISTINCT(
fTable[Week]),
"WeekNum", VALUE(RIGHT(fTable[Week], 2)))
You need the WeekNum field to sort the Week field by:
Set up the model using one-to-many, single direction relationships between the dimension tables and the corresponding fields in the fact table:
Create the following two measures for the values bucket in the matrix visual:
Store Sales =
CALCULATE (
SUM ( fTable[Sales Amount] ),
FILTER ( 'Sales Type Table', 'Sales Type Table'[Sales Type] = "Store Sales" )
)
Web Sales =
CALCULATE (
SUM ( fTable[Sales Amount] ),
FILTER ( 'Sales Type Table', 'Sales Type Table'[Sales Type] = "Web Sales" )
)
Now you can set up the matrix as follows:
Sample PBIX file attached
Proud to be a Super User!
Paul on Linkedin.
It worked. Thanks!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |