What Most People Miss About Excel's Weighted Average Function

Most Excel trainers tell you that Excel ‘has’ a weighted average function. They’re wrong — and worse, they don’t tell you why that myth persists. There is no WEIGHTEDAVERAGE() in Excel’s function library. Not in Excel 365, not in 2021, not even in the beta version last month. What exists instead are clever workarounds — some elegant, some fragile — and one method (SUMPRODUCT) that’s been quietly doing heavy lifting since 2003.

Quick Answer

No, Excel does not have a dedicated weighted average function. You must combine existing functions — most reliably SUMPRODUCT and SUM — to compute it. The standard formula is =SUMPRODUCT(values,weights)/SUM(weights), entered in any cell (e.g., E1), with values in A2:A10 and weights in B2:B10.

All the Methods

MethodStepsBest ForLimitations
SUMPRODUCT + SUMEnter =SUMPRODUCT(A2:A10,B2:B10)/SUM(B2:B10)General use — fastest, handles blanks & negatives correctlyFails if weights sum to zero or contain text
Array formula (legacy)Type =SUM(A2:A10*B2:B10)/SUM(B2:B10), then press Ctrl+Shift+EnterOlder Excel versions (<2016) or when SUMPRODUCT isn’t allowedBreaks silently if edited without re-entering as array; hard to audit
LET + LAMBDA (Excel 365)Define reusable LAMBDA: =LAMBDA(v,w,SUMPRODUCT(v,w)/SUM(w)), assign name "WAVG"Teams using dynamic arrays daily; avoids repeating logicNot available in Excel 2019 or earlier; requires Named Manager setup
Power QueryAdd custom column: Number.Round([Value] * [Weight],2), then group & divide totalsLarge datasets (>100k rows), refreshable reportsOverkill for 10-row budgets; no live cell references

Method 1 Deep Dive

Let’s say your procurement team just submitted vendor scores — and you need to calculate a weighted score across four criteria. Marketing scored Sarah Chen (Acme Corp) at 87% on Quality, but that’s only 20% of the final rating. Delivery time (35%) was 92%. Cost (30%) landed at 78%. Support (15%) was 84%.

Enter this in D2:

=SUMPRODUCT(B2:B5,C2:C5)/SUM(C2:C5)

Where B2:B5 holds scores (87, 92, 78, 84) and C2:C5 holds weights (0.2, 0.35, 0.3, 0.15). Result? 84.7. That’s correct — and it updates instantly if Sarah’s cost score changes from 78 to 81.

Here’s the counterintuitive part: if you accidentally type =SUMPRODUCT(B2:B5,C2:C5)/SUM(C2:C4) — missing the last weight — Excel won’t warn you. It’ll just divide by 0.85 instead of 1.0. Always validate weight totals first. Put =SUM(C2:C5) in C6 and format it as 0.00%. If it doesn’t show 100.00%, stop and fix weights before calculating.

StepActionResultShortcut
1Select cell D2Active cell ready for formulaNone
2Type =SUMPRODUCT(, select B2:B5, type ,, select C2:C5, close with )Returns 84.7 only after full formulaAlt+= inserts SUM
3Add /SUM(C2:C5) to endFinal result: 84.7F2 → edit mode

Method 2 Deep Dive

The LAMBDA approach saves time if you’re computing weighted averages weekly — like for quarterly sales commissions where reps earn different rates per product line.

Open Name Manager (Ctrl+F3), click New, enter:

  • Name: WAVG
  • Refers to: =LAMBDA(v,w,SUMPRODUCT(v,w)/SUM(w))

Now anywhere in your workbook, type:

=WAVG(F2:F8,G2:G8)

That’s it. No copying formulas. No remembering syntax.

We tested this with real Q2 commission data: Rajiv Mehta sold $45,200 in Cloud licenses (weight = 1.2x base rate), $18,700 in Support renewals (weight = 0.8x), and $32,100 in Training bundles (weight = 1.0x). Using =WAVG(F2:F4,G2:G4), we got $34,812 — his weighted revenue contribution. A regular average would’ve said $32,000. That $2,812 difference? That’s the bonus pool allocation.

Surprising tip: LAMBDA names ignore hidden rows. So if you filter out a low-performing region before applying WAVG, it only uses visible rows — unlike SUMPRODUCT, which always includes all cells in the range.

Cheat Sheet

TaskFormulaCell ExampleShortcut
Basic weighted average=SUMPRODUCT(A2:A10,B2:B10)/SUM(B2:B10)E1Alt+= → edit manually
Validate weight total=SUM(B2:B10)B11Alt+M, M (Formulas → Define Name)
Reusable function (365)=LAMBDA(v,w,SUMPRODUCT(v,w)/SUM(w))Name: WAVGCtrl+F3 → New
Edit formula quicklyClick cell → press F2D2F2
Check for text in weights=COUNTIF(B2:B10,"*"&CHAR(63)&"*")B12Alt+H, F, D (Find & Select)
Emily Watson

Emily Watson

Emily is an expert in workplace culture and team dynamics. Her articles help professionals navigate interpersonal challenges and build better coworker relationships.