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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
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?
Solved! Go to Solution.
@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
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@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
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Awesome!
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 70 | |
| 55 | |
| 38 | |
| 28 | |
| 22 |
| User | Count |
|---|---|
| 133 | |
| 121 | |
| 54 | |
| 37 | |
| 31 |