Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Custom Cross-Tab Data Table - Need help changing the way data is formatted in the table

Below is an example of a report I created. In the settings of the cross tab, I selected "Format > Values > Show on Rows" to show this view.

 

 

 

Capture.PNG

 

However, my manager wants me to be able to show the data in this format where the Act, Bud and Var are on the same line for each metric but under the specialty.

 

Capture2.PNG

 

This is how my data is structured in the data table. 

Capture3.PNG

 

Can anyone help me figure out how to display the data in the desired format?

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

You have to create a table and display that like one given below

 


new table =
union(
summarize(table,table[speciality],"name","Comp-phy-comp","Act",[Comp-phy-comp act],"Bud",[Comp-phy-comp bud],"Var",[Comp-phy-comp var]),
summarize(table,table[speciality],"name","Comp-app-comp","Act",[Comp-app-comp act],"Bud",[Comp-app-comp bud],"Var",[Comp-app-comp var])
)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

You have to create a table and display that like one given below

 


new table =
union(
summarize(table,table[speciality],"name","Comp-phy-comp","Act",[Comp-phy-comp act],"Bud",[Comp-phy-comp bud],"Var",[Comp-phy-comp var]),
summarize(table,table[speciality],"name","Comp-app-comp","Act",[Comp-app-comp act],"Bud",[Comp-app-comp bud],"Var",[Comp-app-comp var])
)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

THANK YOU @amitchandak !!! That works. I have not used the new table feature before so I didn't know that existed. I really appreciate your help.

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Top Solution Authors