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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Bootkie2
Frequent Visitor

Normalized Matrix Table Average Values

Hello I have a PowerBI Matrix table and it is working great. But I am trying to create another matrix output table based on the results of this first table to normalize the numbers a little bit. Basically I want to take the Cell Value in the original table and subtract the Row Avearge x Column Average divided by the overeall average. I can create the new table very easily in Excel but can I do this in PowerBI too? How do I do it?

 

Bootkie2_0-1619979509787.png

 

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@Bootkie2 

Try the following measure for your new matrix visual.

New Measure = 

var __rowtotal = CALCULATE([Average Online Sales],ALLSELECTED('rb_lysol_question_key'[Product Category]))
var __columntotal = CALCULATE([Average Online Sales],ALLSELECTED('rb_lysol_question_key'[Age]))
var __grandtotal = CALCULATE([Average Online Sales],ALLSELECTED())
var __result = 
   [Average Online Sales] -  
   DIVIDE(
       __rowtotal * __columntotal,
       __grandtotal
    )
return
    __result

 

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

2 REPLIES 2
Fowmy
Super User
Super User

@Bootkie2 

Try the following measure for your new matrix visual.

New Measure = 

var __rowtotal = CALCULATE([Average Online Sales],ALLSELECTED('rb_lysol_question_key'[Product Category]))
var __columntotal = CALCULATE([Average Online Sales],ALLSELECTED('rb_lysol_question_key'[Age]))
var __grandtotal = CALCULATE([Average Online Sales],ALLSELECTED())
var __result = 
   [Average Online Sales] -  
   DIVIDE(
       __rowtotal * __columntotal,
       __grandtotal
    )
return
    __result

 

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Awesome!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.