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
Preacher9296
Regular Visitor

View field in both row and column under a year header

I am trying to create a matrix visualizations in which I want to show field value in both row (Actual Value) and its percentage under a year column header. 

 

1 ACCEPTED SOLUTION
v-xiaotang
Community Support
Community Support

Hi @Preacher9296 

You need fixed column headings, 

vxiaotang_0-1670220013571.pngvxiaotang_1-1670220024080.png

then create the measure like below and put it into Values field

Measure = SWITCH(TRUE(),
MAX('Table'[Column2])="Actual", 1,//replace 1 with your % Rev
MAX('Table'[Column2])="% Rev",2)  //replace 1 with your Actual

vxiaotang_2-1670220620735.png

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-xiaotang
Community Support
Community Support

Hi @Preacher9296 

You need fixed column headings, 

vxiaotang_0-1670220013571.pngvxiaotang_1-1670220024080.png

then create the measure like below and put it into Values field

Measure = SWITCH(TRUE(),
MAX('Table'[Column2])="Actual", 1,//replace 1 with your % Rev
MAX('Table'[Column2])="% Rev",2)  //replace 1 with your Actual

vxiaotang_2-1670220620735.png

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

Preacher9296
Regular Visitor

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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.