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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.