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.
Expectation: all the table measures will be in row-wise below the metrics column, so how we can do this the data source is in the SSMS server
L4 is Last four week, L13,L26,L52 Should come as each column
Reality: what we can actually do in power BI is this below
Solved! Go to Solution.
Hi @GowthamK66
Please try this:
Here I have the sample data:
You can create a matrix and put the category column on the Columns box:
And open the Switch values in row groups rather that columns:
The result is as follow:
And here's another workaround:
Add a new table:
Table 2 = {"Measure1","Measure2","Measure3"}
Then add a new measure:
Measure =
VAR _Values = SELECTEDVALUE('Table 2'[Value])
RETURN
SWITCH(
_Values,
"Measure1",[Measure1],
"Measure2",[Measure2],
"Measure3",[Measure3]
)
Finally, create a matrix with these fields:
The result is as follow:
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @GowthamK66
Please try this:
Here I have the sample data:
You can create a matrix and put the category column on the Columns box:
And open the Switch values in row groups rather that columns:
The result is as follow:
And here's another workaround:
Add a new table:
Table 2 = {"Measure1","Measure2","Measure3"}
Then add a new measure:
Measure =
VAR _Values = SELECTEDVALUE('Table 2'[Value])
RETURN
SWITCH(
_Values,
"Measure1",[Measure1],
"Measure2",[Measure2],
"Measure3",[Measure3]
)
Finally, create a matrix with these fields:
The result is as follow:
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
the screenshot is from power bi Visuals, I do not have a physical table like that
The thing is all the measures should be placed in the Row level but in Power BI we can't do that, we can place the measure only in Values not in Rows😥
Hi @GowthamK66
Please try this:
Click the Transform data in the Hoem pane to use the PowerQuery:
Then in the Transform Pane, you can use the Transpose feature:
Here I create a set of sample:
Hold down the Ctrl key and select all the columns and click the Transpose, then click the Use First Row as Headers in the Home pane, the result is as follow:
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Please share the dummy PBIX File
i dont have dummy file
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.