Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
I need advice, please.
I don´t know how I will calculate weighted average ( How I make new column with weighted average)?
Column Trips is weight and column Priority is grade.
Avarege priority is (4+1)/2)=2,5 but I want weighted average (4*1+1*3)/4=1,75
Thank you
Ondřej
Solved! Go to Solution.
Try a new measure like
divide(sumx(Table,Table[Trips]*Table[Priority]),sum(Table[Trips]))
You can use AVERAGEX() like this
WeightedAverage =
AVERAGEX (
MyTable,
MyTable[Priority] * MyTable[Trips]
)Let us know if that works for you
Best
David
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 51 | |
| 40 | |
| 37 | |
| 14 | |
| 14 |
| User | Count |
|---|---|
| 84 | |
| 70 | |
| 38 | |
| 29 | |
| 26 |