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

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.

Reply
Anonymous
Not applicable

Table with measures in rows and columns

Hello,

 

is it possible to place measures in table/matrix as below in Power BI? Basically I know how to create all the measures, but I don't know how to allocate them in presented way. Many Thanks, Kamil 

 

KamilSzpyrka_0-1643103700707.png

 

3 REPLIES 3
MargaritaG
Resolver I
Resolver I

to format calculation groups select in Property Format String Expression

MargaritaG_0-1643204072005.png

 

amitchandak
Super User
Super User

@Anonymous , You have create a custom table or calculation groups

 

example

union(
summarize('Table',"Measure","Min","Test1",min('Table'[Test1]),"Test2",min('Table'[Test2]),"Test3",min('Table'[Test3]))
summarize('Table',"Measure","Max","Test1",max('Table'[Test1]),"Test2",max('Table'[Test2]),"Test3",max('Table'[Test3]))
)
"QTD" , "YTD" , "MTD"

union(
summarize('Table',"Measure","sales","This period",[SALES YTD],"Last period",[SALES LYTD],"POP",[SALES YOY])
summarize('Table',"Measure","unit","This period",[unit YTD],"Last period",[unit LYTD],"POP",[unit YOY])
)

 

 

But new table will not take filters so you need to add them as a group by in the new table  and join them with dimensions again

 

tabular - Calculation groups
https://docs.microsoft.com/en-us/analysis-services/tabular-models/calculation-groups?view=asallproducts-allversions#limitations

 

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

Hi @amitchandak ,

Thank you for support, you are very helpful as always 🙂 I used calculation group in order to create desired table. I approached next challange - I wanted to apply conditional formatting for 2 out of 6 calculated items. Is there any possibility for this? Thanks, Kamil

KamilSzpyrka_0-1643194876271.png

 

Helpful resources

Announcements
October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.