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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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])
)

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])
)

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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