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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

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
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

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.